0024428: Implementation of LGPL license
[occt.git] / src / IGESSelect / IGESSelect_ComputeStatus.cxx
1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
2 //
3 // This file is part of Open CASCADE Technology software library.
4 //
5 // This library is free software; you can redistribute it and / or modify it
6 // under the terms of the GNU Lesser General Public version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
10 //
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
13
14 #include <IGESSelect_ComputeStatus.ixx>
15 #include <IGESData_Protocol.hxx>
16 #include <IGESData_BasicEditor.hxx>
17 #include <Interface_Check.hxx>
18
19 #include <Interface_Macros.hxx>
20
21 IGESSelect_ComputeStatus::IGESSelect_ComputeStatus ()
22     : IGESSelect_ModelModifier (Standard_False)    {  }
23
24     void  IGESSelect_ComputeStatus::Performing
25   (IFSelect_ContextModif& ctx,
26    const Handle(IGESData_IGESModel)& target,
27    Interface_CopyTool& ) const
28 {
29   DeclareAndCast(IGESData_Protocol,protocol,ctx.Protocol());
30   if (protocol.IsNull()) {
31     ctx.CCheck()->AddFail("IGES Compute Status, Protocol incorrect");
32     return;
33   }
34
35   IGESData_BasicEditor corrector (target,protocol);
36   corrector.ComputeStatus();
37 }
38
39
40     TCollection_AsciiString  IGESSelect_ComputeStatus::Label () const
41 {
42   return TCollection_AsciiString ("Compute Status of IGES Entities (Directory Part)");
43 }