Enumerations | |
| enum | state { none = 0, button1 = 1, button2 = 2, button3 = 4, button4 = 8, button5 = 16 } |
Functions | |
| void | operator|= (state &s1, state s2) |
|
|
Definition at line 20 of file mouse_state.h.
|
|
||||||||||||
|
Definition at line 29 of file mouse_state.h.
00030 {
00031 s1 = static_cast<state>(s1 | s2);
00032 }
|
1.2.14 written by Dimitri van Heesch,
© 1997-2002