OCC22250 Windows lost focus with DRAWEXE launched in 'virtual windows' mode
[occt.git] / src / Draw / Draw_Color.cxx
1 // Copyright:   Matra-Datavision 1991
2 // File:        Draw_Color.cxx
3 // Created:     Wed Apr 24 16:52:41 1991
4 // Author:      Arnaud BOUZY
5 //              <adn>
6
7 #include <Draw_Color.ixx>
8
9 Draw_Color::Draw_Color () :
10        myKind(Draw_blanc)
11 {
12 }
13
14 Draw_Color::Draw_Color (const Draw_ColorKind c) :
15        myKind(c)
16 {
17 }
18
19 Draw_ColorKind Draw_Color::ID () const
20 {
21   return myKind;
22 }