OpenPose  1.0.0rc2
OpenPose: A Real-Time Multi-Person Key-Point Detection And Multi-Threading C++ Library
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
enumClasses.hpp
Go to the documentation of this file.
1 #ifndef OPENPOSE_GUI_ENUM_CLASSES_HPP
2 #define OPENPOSE_GUI_ENUM_CLASSES_HPP
3 
4 namespace op
5 {
10  enum class DisplayMode : unsigned short
11  {
12  NoDisplay,
13  DisplayAll,
14  Display2D,
15  Display3D,
17  };
18 
23  enum class FullScreenMode : bool
24  {
25  FullScreen,
26  Windowed,
27  };
28 }
29 
30 #endif // OPENPOSE_GUI_ENUM_CLASSES_HPP
FullScreenMode
Definition: enumClasses.hpp:23
DisplayMode
Definition: enumClasses.hpp:10