0024830: Remove redundant keyword 'mutable' in CDL declarations
[occt.git] / src / IGESSelect / IGESSelect_ComputeStatus.cxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 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.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 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
b311480e 21IGESSelect_ComputeStatus::IGESSelect_ComputeStatus ()
7fd59977 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}