diff options
author | Mike Buland <eichlan@xagasoft.com> | 2008-10-02 13:13:03 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2008-10-02 13:13:03 +0000 |
commit | 7ae633f8a997997524cded2d205d14eeb5f08051 (patch) | |
tree | 7e773bd0b4a1aea83534a6ce5c80c9f4269e20f5 /src/tafnode.h | |
parent | b6f57560fb7fae00f0854ca19158bd5512e5405b (diff) | |
download | libbu++-7ae633f8a997997524cded2d205d14eeb5f08051.tar.gz libbu++-7ae633f8a997997524cded2d205d14eeb5f08051.tar.bz2 libbu++-7ae633f8a997997524cded2d205d14eeb5f08051.tar.xz libbu++-7ae633f8a997997524cded2d205d14eeb5f08051.zip |
Updated on my laptop and discovered that the new, more pedantic gcc had a
problem with a missing include. Also, if you get errors about conflicts and
things being declared twice, then "rm src/exceptions.o" it shouldn't be
sneaking in there still, but it may be. then do a full "build -c all" and
build.
Oh, also found some solid gold taf code that never got included, but is very
much needed. Remembering to commit would be useful...
Diffstat (limited to 'src/tafnode.h')
-rw-r--r-- | src/tafnode.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tafnode.h b/src/tafnode.h index 526ef68..f6d2ea9 100644 --- a/src/tafnode.h +++ b/src/tafnode.h | |||
@@ -62,10 +62,12 @@ namespace Bu | |||
62 | const Bu::FString &getName() const; | 62 | const Bu::FString &getName() const; |
63 | void setName( const Bu::FString &sName ); | 63 | void setName( const Bu::FString &sName ); |
64 | 64 | ||
65 | bool hasProperty( const Bu::FString &sName ) const; | ||
65 | const Bu::FString &getProperty( const Bu::FString &sName ) const; | 66 | const Bu::FString &getProperty( const Bu::FString &sName ) const; |
66 | const Bu::FString &getProperty( const Bu::FString &sName, | 67 | const Bu::FString &getProperty( const Bu::FString &sName, |
67 | const Bu::FString &sDef ) const; | 68 | const Bu::FString &sDef ) const; |
68 | const PropList &getProperties( const Bu::FString &sName ) const; | 69 | const PropList &getProperties( const Bu::FString &sName ) const; |
70 | bool hasChild( const Bu::FString &sName ) const; | ||
69 | const TafGroup *getChild( const Bu::FString &sName ) const; | 71 | const TafGroup *getChild( const Bu::FString &sName ) const; |
70 | const GroupList &getChildren( const Bu::FString &sName ) const; | 72 | const GroupList &getChildren( const Bu::FString &sName ) const; |
71 | TafNode *addChild( TafNode *pNode ); | 73 | TafNode *addChild( TafNode *pNode ); |