ff861d0a6715d0b43a17a667a2ab9f0a3e673b73
[occt.git] / tools / DFBrowserPane / DFBrowserPane_OcctEnumType.hxx
1 // Created on: 2017-06-16
2 // Created by: Natalia ERMOLAEVA
3 // Copyright (c) 2017 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement. 
15
16 #ifndef DFBrowserPane_OcctEnumType_H
17 #define DFBrowserPane_OcctEnumType_H
18
19 //! Information for OCCT enumeration type
20 enum DFBrowserPane_OcctEnumType
21 {
22   DB_CONSTRAINT_TYPE = 0, //!< TDataXtd_ConstraintEnum values
23   DB_NAMING_TYPE = 1,     //!< TNaming_NameType values
24   DB_SHAPE_TYPE = 2,      //!< TopAbs_ShapeEnum values
25   DB_NS_TYPE = 3,         //!< TNaming_Evolution values
26   DB_GEOM_TYPE = 4,       //!< TDataXtd_GeometryEnum values
27   DB_DIMENSION_TYPE = 5,  //!< TDataStd_RealEnum values
28   DB_MATERIAL_TYPE = 6,   //!< Graphic3d_NameOfMaterial values
29   DB_DISPLAY_MODE = 7,    //!< AIS_DisplayMode values
30   DB_ORIENTATION_TYPE = 8 //!< TopAbs_Orientation values
31 };
32
33 #endif