]> ruin.nu Git - popboot.git/blob - node.h
some changes
[popboot.git] / node.h
1 #ifndef __node_h__
2 #define __node_h__
3
4 #include <vector>
5 #include "action.h"
6
7 class Node {
8
9         Node(Action action, std::vector<Node&> children);
10
11         addChild(Node& node);
12
13         protected:
14                 Action _action;
15                 std::vector<Node&> _children;
16 };
17
18 #endif