SCV  4.2.1
Simple Components for Visual
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
GenericNode.h
Go to the documentation of this file.
1 #ifndef _SCV_GENERIC_NODE_H_
2 #define _SCV_GENERIC_NODE_H_
3 
4 #include <string>
5 #include <vector>
6 
13 namespace scv {
14 
19 {
20  GenericNode(const std::string& label, int userData = 0);
21  ~GenericNode();
22 
23  std::string label;
24  int userData;
25  std::vector<GenericNode*> children;
26  bool open;
27 };
28 
29 }
30 
31 #endif