0027772: Foundation Classes - define Standard_Boolean using C++ type "bool" instead...
[occt.git] / src / Draw / Draw_Number.cxx
CommitLineData
b311480e 1// Created on: 1993-08-16
2// Created by: Bruno DUMORTIER
3// Copyright (c) 1993-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
42cf5bc1 17
18#include <Draw_Display.hxx>
19#include <Draw_Drawable3D.hxx>
20#include <Draw_Number.hxx>
21#include <Standard_Type.hxx>
7fd59977 22
92efcf78 23IMPLEMENT_STANDARD_RTTIEXT(Draw_Number,Draw_Drawable3D)
24
7fd59977 25//=======================================================================
26//function : Draw_Number
27//purpose :
28//=======================================================================
7fd59977 29Draw_Number::Draw_Number(const Standard_Real V) :
30 myValue(V)
31{
32}
33
34
35//=======================================================================
36//function : Value
37//purpose :
38//=======================================================================
39
40Standard_Real Draw_Number::Value()const
41{
42 return myValue;
43}
44
45
46//=======================================================================
47//function : Value
48//purpose :
49//=======================================================================
50
51void Draw_Number::Value(const Standard_Real V)
52{
53 myValue = V;
54}
55
56
57//=======================================================================
58//function : DrawOn
59//purpose :
60//=======================================================================
61
62void Draw_Number::DrawOn(Draw_Display&)const
63{
64}
65
66
67//=======================================================================
68//function : Copy
69//purpose :
70//=======================================================================
71
72Handle(Draw_Drawable3D) Draw_Number::Copy()const
73{
74 Handle(Draw_Number) D = new Draw_Number(myValue);
75 return D;
76}
77
78
79//=======================================================================
80//function : Dump
81//purpose :
82//=======================================================================
83
84void Draw_Number::Dump(Standard_OStream& S)const
85{
86 S << myValue;
87}
88
89
90//=======================================================================
91//function : Whatis
92//purpose :
93//=======================================================================
94
95void Draw_Number::Whatis(Draw_Interpretor& S)const
96{
97 S << "numeric";
98}