Subversion Repositories HomeAutomation

Rev

Rev 1315 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1315 Rev 1323
Line 25... Line 25...
25
using namespace boost::algorithm;
25
using namespace boost::algorithm;
26
 
26
 
27
class Node
27
class Node
28
{
28
{
29
public:
29
public:
30
    typedef std::map<std::string, std::string> attributeList;
30
    typedef std::map<std::string, std::string> attributeList; // TODO Move these typedef:s out of the class
31
    typedef std::pair<std::string, std::string> attributePair;
31
    typedef std::pair<std::string, std::string> attributePair;
32
    typedef std::vector<Node> nodeList;
32
    typedef std::vector<Node> nodeList;
33
 
33
 
34
    Node();
34
    Node();
35
    Node(string filename);
35
    Node(string filename);