42cf5bc1 |
1 | // Created on: 1999-10-29 |
2 | // Created by: Pavel DURANDIN |
3 | // Copyright (c) 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 _GeomTools_UndefinedTypeHandler_HeaderFile |
18 | #define _GeomTools_UndefinedTypeHandler_HeaderFile |
19 | |
20 | #include <Standard.hxx> |
21 | #include <Standard_Type.hxx> |
22 | |
23 | #include <MMgt_TShared.hxx> |
24 | #include <Standard_OStream.hxx> |
25 | #include <Standard_Boolean.hxx> |
26 | #include <Standard_IStream.hxx> |
27 | #include <Standard_Integer.hxx> |
28 | class Geom_Curve; |
29 | class Geom2d_Curve; |
30 | class Geom_Surface; |
31 | |
32 | |
33 | class GeomTools_UndefinedTypeHandler; |
34 | DEFINE_STANDARD_HANDLE(GeomTools_UndefinedTypeHandler, MMgt_TShared) |
35 | |
36 | |
37 | class GeomTools_UndefinedTypeHandler : public MMgt_TShared |
38 | { |
39 | |
40 | public: |
41 | |
42 | |
43 | Standard_EXPORT GeomTools_UndefinedTypeHandler(); |
44 | |
45 | Standard_EXPORT virtual void PrintCurve (const Handle(Geom_Curve)& C, Standard_OStream& OS, const Standard_Boolean compact = Standard_False) const; |
46 | |
47 | Standard_EXPORT virtual Standard_IStream& ReadCurve (const Standard_Integer ctype, Standard_IStream& IS, Handle(Geom_Curve)& C) const; |
48 | |
49 | Standard_EXPORT virtual void PrintCurve2d (const Handle(Geom2d_Curve)& C, Standard_OStream& OS, const Standard_Boolean compact = Standard_False) const; |
50 | |
51 | Standard_EXPORT virtual Standard_IStream& ReadCurve2d (const Standard_Integer ctype, Standard_IStream& IS, Handle(Geom2d_Curve)& C) const; |
52 | |
53 | Standard_EXPORT virtual void PrintSurface (const Handle(Geom_Surface)& S, Standard_OStream& OS, const Standard_Boolean compact = Standard_False) const; |
54 | |
55 | Standard_EXPORT virtual Standard_IStream& ReadSurface (const Standard_Integer ctype, Standard_IStream& IS, Handle(Geom_Surface)& S) const; |
56 | |
57 | |
58 | |
59 | |
60 | DEFINE_STANDARD_RTTI(GeomTools_UndefinedTypeHandler,MMgt_TShared) |
61 | |
62 | protected: |
63 | |
64 | |
65 | |
66 | |
67 | private: |
68 | |
69 | |
70 | |
71 | |
72 | }; |
73 | |
74 | |
75 | |
76 | |
77 | |
78 | |
79 | |
80 | #endif // _GeomTools_UndefinedTypeHandler_HeaderFile |