blob: 36da1aa12c71e1a0905fe98ac3d64ea9c4c3d684 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright: Matra-Datavision 1991
// File: Draw_Color.cxx
// Created: Wed Apr 24 16:52:41 1991
// Author: Arnaud BOUZY
// <adn>
#include <Draw_Color.ixx>
Draw_Color::Draw_Color () :
myKind(Draw_blanc)
{
}
Draw_Color::Draw_Color (const Draw_ColorKind c) :
myKind(c)
{
}
Draw_ColorKind Draw_Color::ID () const
{
return myKind;
}
|