1 // Created on: 1993-10-14
2 // Created by: Christian CAILLET
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16 
17 #ifndef _IGESSolid_ToolToroidalSurface_HeaderFile
18 #define _IGESSolid_ToolToroidalSurface_HeaderFile
19 
20 #include <Standard.hxx>
21 #include <Standard_DefineAlloc.hxx>
22 #include <Standard_Handle.hxx>
23 
24 #include <Standard_Integer.hxx>
25 class Standard_DomainError;
26 class IGESSolid_ToroidalSurface;
27 class IGESData_IGESReaderData;
28 class IGESData_ParamReader;
29 class IGESData_IGESWriter;
30 class Interface_EntityIterator;
31 class IGESData_DirChecker;
32 class Interface_ShareTool;
33 class Interface_Check;
34 class Interface_CopyTool;
35 class IGESData_IGESDumper;
36 class Message_Messenger;
37 
38 
39 //! Tool to work on a ToroidalSurface. Called by various Modules
40 //! (ReadWriteModule, GeneralModule, SpecificModule)
41 class IGESSolid_ToolToroidalSurface
42 {
43 public:
44 
45   DEFINE_STANDARD_ALLOC
46 
47 
48   //! Returns a ToolToroidalSurface, ready to work
49   Standard_EXPORT IGESSolid_ToolToroidalSurface();
50 
51   //! Reads own parameters from file. <PR> gives access to them,
52   //! <IR> detains parameter types and values
53   Standard_EXPORT void ReadOwnParams (const Handle(IGESSolid_ToroidalSurface)& ent, const Handle(IGESData_IGESReaderData)& IR, IGESData_ParamReader& PR) const;
54 
55   //! Writes own parameters to IGESWriter
56   Standard_EXPORT void WriteOwnParams (const Handle(IGESSolid_ToroidalSurface)& ent, IGESData_IGESWriter& IW) const;
57 
58   //! Lists the Entities shared by a ToroidalSurface <ent>, from
59   //! its specific (own) parameters
60   Standard_EXPORT void OwnShared (const Handle(IGESSolid_ToroidalSurface)& ent, Interface_EntityIterator& iter) const;
61 
62   //! Returns specific DirChecker
63   Standard_EXPORT IGESData_DirChecker DirChecker (const Handle(IGESSolid_ToroidalSurface)& ent) const;
64 
65   //! Performs Specific Semantic Check
66   Standard_EXPORT void OwnCheck (const Handle(IGESSolid_ToroidalSurface)& ent, const Interface_ShareTool& shares, Handle(Interface_Check)& ach) const;
67 
68   //! Copies Specific Parameters
69   Standard_EXPORT void OwnCopy (const Handle(IGESSolid_ToroidalSurface)& entfrom, const Handle(IGESSolid_ToroidalSurface)& entto, Interface_CopyTool& TC) const;
70 
71   //! Dump of Specific Parameters
72   Standard_EXPORT void OwnDump (const Handle(IGESSolid_ToroidalSurface)& ent, const IGESData_IGESDumper& dumper, const Handle(Message_Messenger)& S, const Standard_Integer own) const;
73 
74 
75 
76 
77 protected:
78 
79 
80 
81 
82 
83 private:
84 
85 
86 
87 
88 
89 };
90 
91 
92 
93 
94 
95 
96 
97 #endif // _IGESSolid_ToolToroidalSurface_HeaderFile
98