1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
//#65 rln 12.02.99 S4151 (explicitly force YYMMDD.HHMMSS before Y2000 and YYYYMMDD.HHMMSS after Y2000)
#include <IGESSelect_UpdateCreationDate.ixx>
#include <OSD_Process.hxx>
#include <Quantity_Date.hxx>
#include <IGESData_GlobalSection.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Interface_Check.hxx>
IGESSelect_UpdateCreationDate::IGESSelect_UpdateCreationDate ()
: IGESSelect_ModelModifier (Standard_False) { }
void IGESSelect_UpdateCreationDate::Performing
(IFSelect_ContextModif& ctx,
const Handle(IGESData_IGESModel)& target,
Interface_CopyTool& ) const
{
Standard_Integer jour,mois,annee,heure,minute,seconde,millisec,microsec;
OSD_Process system;
Quantity_Date ladate = system.SystemDate();
ladate.Values (mois,jour,annee,heure,minute,seconde,millisec,microsec);
IGESData_GlobalSection GS = target->GlobalSection();
if (annee < 2000)
//#65 rln 12.02.99 S4151 (explicitly force YYMMDD.HHMMSS before Y2000)
GS.SetDate (IGESData_GlobalSection::NewDateString
(annee,mois,jour,heure,minute,seconde,0));
else
//#65 rln 12.02.99 S4151 (explicitly force YYYYMMDD.HHMMSS after Y2000)
GS.SetDate (IGESData_GlobalSection::NewDateString
(annee,mois,jour,heure,minute,seconde, -1));
target->SetGlobalSection(GS);
Handle(Interface_Check) check = new Interface_Check;
target->VerifyCheck(check);
ctx.AddCheck(check);
}
TCollection_AsciiString IGESSelect_UpdateCreationDate::Label () const
{ return TCollection_AsciiString ("Update Creation Date in IGES Global Section"); }
|