Integration of OCCT 6.5.0 from SVN
[occt.git] / src / PXCAFDoc / PXCAFDoc_Color.cxx
CommitLineData
7fd59977 1// File: PXCAFDoc_Color.cxx
2// Created: Wed Aug 16 12:12:01 2000
3// Author: data exchange team
4// <det@strelox.nnov.matra-dtv.fr>
5
6
7#include <PXCAFDoc_Color.ixx>
8
9//=======================================================================
10//function : Constructor
11//purpose :
12//=======================================================================
13
14PXCAFDoc_Color::PXCAFDoc_Color()
15{
16}
17
18//=======================================================================
19//function : Constructor
20//purpose :
21//=======================================================================
22
23PXCAFDoc_Color::PXCAFDoc_Color(const Quantity_Color& C)
24{
25 myColor = C;
26}
27
28//=======================================================================
29//function : Set
30//purpose :
31//=======================================================================
32
33 void PXCAFDoc_Color::Set(const Quantity_Color& C)
34{
35 myColor = C;
36}
37
38//=======================================================================
39//function : Get
40//purpose :
41//=======================================================================
42
43 Quantity_Color PXCAFDoc_Color::Get() const
44{
45 return myColor;
46}
47