SCV  4.2.1
Simple Components for Visual
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
ButtonGroup.h
Go to the documentation of this file.
1 
7 #ifndef __SCV_BUTTON_GROUP_H__
8 #define __SCV_BUTTON_GROUP_H__
9 
10 namespace scv {
11 
12 class StateButton;
13 
19 class ButtonGroup {
20 friend class StateButton;
21 public:
26  int getActive(void);
27 
28 private:
29  void update(StateButton *ptr);
30  std::deque<StateButton*> _componentsArray;
31 
32 };
33 
34 } // namespace scv
35 
36 #endif // __SCV_BUTTON_GROUP_H__