趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Align.h
Go to the documentation of this file.
1 #ifndef HRK_ALIGN_H
2 #define HRK_ALIGN_H
3 
10 namespace hrk
11 {
12  class Align
13  {
14  public:
15  enum {
16  Left = 0x01,
17  Center = 0x02,
18  Right = 0x04,
19  Top = 0x08,
20  Middle = 0x10,
21  Bottom = 0x20,
22  };
23  };
24 }
25 
26 #endif
Definition: Align.h:12