1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-26 11:05:31 +03:00
occt/src/IGESSelect/IGESSelect_UpdateLastChange.cxx
bugmster 973c2be1e1 0024428: Implementation of LGPL license
The copying permission statements at the beginning of source files updated to refer to LGPL.
Copyright dates extended till 2014 in advance.
2013-12-17 12:42:41 +04:00

56 lines
2.2 KiB
C++

// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and / or modify it
// under the terms of the GNU Lesser General Public version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
//#65 rln 12.02.99 S4151 (explicitly force YYMMDD.HHMMSS before Y2000 and YYYYMMDD.HHMMSS after Y2000)
#include <IGESSelect_UpdateLastChange.ixx>
#include <OSD_Process.hxx>
#include <Quantity_Date.hxx>
#include <IGESData_GlobalSection.hxx>
#include <TCollection_HAsciiString.hxx>
#include <Interface_Check.hxx>
IGESSelect_UpdateLastChange::IGESSelect_UpdateLastChange ()
: IGESSelect_ModelModifier (Standard_False) { }
void IGESSelect_UpdateLastChange::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 (GS.IGESVersion() < 9) GS.SetIGESVersion(9);
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_UpdateLastChange::Label () const
{ return TCollection_AsciiString ("Update Last Change Date in IGES Global Section"); }