/* * modelCDMProjectsTreeNode.h * * Created on: 22/10/2012 * Author: daniel */ #ifndef MODELCDMPROJECTSTREENODE_H_ #define MODELCDMPROJECTSTREENODE_H_ #include #include class modelCDMProjectsTreeNode { public: modelCDMProjectsTreeNode(); modelCDMProjectsTreeNode(std::string path, std::string name, unsigned char type, int level); ~modelCDMProjectsTreeNode(); const std::string& GetPath() const; const std::string& GetName() const; const unsigned char& GetType() const; const int& GetLevel() const; const std::vector& GetChildren() const; void SetChildren(std::vector& children); private: std::string _path; std::string _name; unsigned char _type; int _level; std::vector _children; }; #endif /* MODELCDMPROJECTSTREENODE_H_ */