1
0
Fork 0
forked from len0rd/rockbox

Changed build subdirectory

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26492 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-02 20:36:30 +00:00
parent 87174d83fd
commit e5a3ec2baf
6 changed files with 130 additions and 8 deletions

View file

@ -37,6 +37,8 @@ public:
virtual ~ParseTreeNode();
QString genCode() const;
int genHash() const;
bool isParam() const{ if(param) return true; else return false; }
struct skin_tag_parameter* getParam(){ return param;}
struct skin_element* getElement(){return element;}
@ -46,6 +48,13 @@ public:
QVariant data(int column) const;
int getRow() const;
ParseTreeNode* getParent() const;
ParseTreeNode* getChild(int row) const
{
if(row < children.count())
return children[row];
else
return 0;
}
private:
ParseTreeNode* parent;