23.06.2014 - PICodeParser, PICodeInfo, PIConnection, new binary "pip_cmg"

This commit is contained in:
peri4
2014-06-23 21:08:27 +04:00
parent 2e5e75c4c4
commit 15a20d40ac
56 changed files with 10315 additions and 760 deletions

View File

@@ -110,10 +110,10 @@ public:
Entry * parent() const {return _parent;}
//! Returns children count
int childCount() {return _children.size_s();}
int childCount() const {return _children.size_s();}
//! Returns children as \a PIConfig::Branch
Branch & children() {_children.delim = delim; return _children;}
Branch & children() const {_children.delim = delim; return _children;}
//! Returns child at index "index"
Entry * child(const int index) const {return _children[index];}
@@ -303,7 +303,7 @@ public:
static Entry _empty;
Entry * _parent;
Branch _children;
mutable Branch _children;
PIString _tab;
PIString _name;
PIString _value;