blob: 3df6ab23641c365e7a97021bbe759c24b800dedb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
// File: GeomTools_UndefinedTypeHandler.cxx
// Created: Fri Oct 29 11:25:54 1999
// Author: Pavel DURANDIN
// <pdn@friendox>
#include <GeomTools_UndefinedTypeHandler.ixx>
GeomTools_UndefinedTypeHandler::GeomTools_UndefinedTypeHandler()
{
}
//=======================================================================
//function : PrintCurve
//purpose :
//=======================================================================
void GeomTools_UndefinedTypeHandler::PrintCurve(const Handle(Geom_Curve)& /*C*/,
Standard_OStream& OS,
const Standard_Boolean compact) const
{
if (!compact)
OS << "****** UNKNOWN CURVE TYPE ******\n";
else
cout << "****** UNKNOWN CURVE TYPE ******" << endl;
}
//=======================================================================
//function : ReadCurve
//purpose :
//=======================================================================
Standard_IStream& GeomTools_UndefinedTypeHandler::ReadCurve(const Standard_Integer /*ctype*/,
Standard_IStream& IS,
Handle(Geom_Curve)& /*C*/) const
{
return IS;
}
//=======================================================================
//function :
//purpose :
//=======================================================================
void GeomTools_UndefinedTypeHandler::PrintCurve2d(const Handle(Geom2d_Curve)& /*C*/,
Standard_OStream& OS,
const Standard_Boolean compact) const
{
if (!compact)
OS << "****** UNKNOWN CURVE2d TYPE ******\n";
else
cout << "****** UNKNOWN CURVE2d TYPE ******" << endl;
}
//=======================================================================
//function : ReadCurve2d
//purpose :
//=======================================================================
Standard_IStream& GeomTools_UndefinedTypeHandler::ReadCurve2d(const Standard_Integer /*ctype*/,
Standard_IStream& IS,
Handle(Geom2d_Curve)& /*C*/) const
{
return IS;
}
//=======================================================================
//function : PrintSurface
//purpose :
//=======================================================================
void GeomTools_UndefinedTypeHandler::PrintSurface(const Handle(Geom_Surface)& /*S*/,
Standard_OStream& OS,
const Standard_Boolean compact) const
{
if (!compact)
OS << "****** UNKNOWN SURFACE TYPE ******\n";
else
cout << "****** UNKNOWN SURFACE TYPE ******" << endl;
}
Standard_IStream& GeomTools_UndefinedTypeHandler::ReadSurface(const Standard_Integer /*ctype*/,
Standard_IStream& IS,
Handle(Geom_Surface)& /*S*/) const
{
return IS;
}
|