diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-06-07 03:26:43 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-06-07 03:26:43 +0000 |
commit | 8b598e8436a7110abbd0a7566138bcaa952bb527 (patch) | |
tree | 9939beb03fb606e3f9dc3ff8ac04ed3725008ac6 /src/tafnode.h | |
parent | 1f785c99b4e9e76d6803bd66cc4256e9b03fa788 (diff) | |
download | libbu++-8b598e8436a7110abbd0a7566138bcaa952bb527.tar.gz libbu++-8b598e8436a7110abbd0a7566138bcaa952bb527.tar.bz2 libbu++-8b598e8436a7110abbd0a7566138bcaa952bb527.tar.xz libbu++-8b598e8436a7110abbd0a7566138bcaa952bb527.zip |
Except for an excessive amount of debug info, I finally got the delete code
working. Now you can load Taf structures and clean up, you just can't access
all of the data inside 100%.
Diffstat (limited to '')
-rw-r--r-- | src/tafnode.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tafnode.h b/src/tafnode.h index e962e88..a570d2d 100644 --- a/src/tafnode.h +++ b/src/tafnode.h | |||
@@ -23,8 +23,13 @@ namespace Bu | |||
23 | TafNode(); | 23 | TafNode(); |
24 | virtual ~TafNode(); | 24 | virtual ~TafNode(); |
25 | 25 | ||
26 | void setName( const Bu::FString &sName ); | ||
27 | const Bu::FString &getName(); | ||
28 | |||
26 | void setProperty( Bu::FString sName, Bu::FString sValue ); | 29 | void setProperty( Bu::FString sName, Bu::FString sValue ); |
27 | const PropList &getProperty( const Bu::FString &sName ); | 30 | const PropList &getProperty( const Bu::FString &sName ); |
31 | const NodeList &getNode( const Bu::FString &sName ); | ||
32 | void addChild( TafNode *pNode ); | ||
28 | 33 | ||
29 | private: | 34 | private: |
30 | Bu::FString sName; | 35 | Bu::FString sName; |