18 versionData(uint32_t _majorV, uint32_t _minorV){
19 this->_major = _majorV;
20 this->_minor = _minorV;
31 versionData(
const versionData& other) :
32 _major(other._major), _minor(other._minor){}
34 bool operator==(
const versionData &other)
const{
35 if(this->_major != other._major){
return false;}
36 if(this->_minor != other._minor){
return false;}
39 bool operator!=(
const versionData &other)
const{
40 return !(*
this==other);
53 static const char* startTag;
54 static const char* endTag;
55 static const int startTagSize;
56 static const int endTagSize;
59 colorMap(uint32_t, uint32_t);
62 bool operator==(
const colorMap &other)
const;
63 bool operator!=(
const colorMap &other)
const;
68 void addTarget(target);
69 void addTarget(target[],
int);
70 void addTarget(std::vector<target>);
71 void removeTarget(
const target &);
72 int findTargetInd(
const target &);
74 static bool greaterVersion(
const colorMap &cMap1,
const colorMap &cMap2);
77 void setMajorV(uint32_t);
78 void setMinorV(uint32_t);
79 uint32_t getMajorV()
const;
80 uint32_t getMinorV()
const;
81 versionData getVersion()
const;
82 int getNumTargets(targetType::types)
const;
84 std::vector<target>
const * getTargetList(targetType::types)
const;
85 void setTargetVector(
const std::vector<target> &);
88 void toFile(std::fstream &);
89 bool fromFile(std::fstream &fs);
90 bool isEnd(std::fstream &);
91 static bool nextColorMapExist(std::fstream &fs);
98 struct versionData version;
100 std::vector<target> targetClasses;
101 std::vector<target> targetInstances;