diff options
author | Jonathan Beck | 2009-10-28 18:08:33 +0100 |
---|---|---|
committer | Jonathan Beck | 2009-10-28 18:08:33 +0100 |
commit | fed2573566c2da1c5489260069a99ae9d2abf255 (patch) | |
tree | e86071e7e6e6616676a290eff504a223efe13d1d /include | |
parent | 1bc333972bb5d5b45ba8908f1b12015300d88711 (diff) | |
download | libplist-fed2573566c2da1c5489260069a99ae9d2abf255.tar.gz libplist-fed2573566c2da1c5489260069a99ae9d2abf255.tar.bz2 |
Unlink previous node in SetParent().
Diffstat (limited to 'include')
-rw-r--r-- | include/plist/Structure.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/plist/Structure.h b/include/plist/Structure.h index 6f100cc..239a8b8 100644 --- a/include/plist/Structure.h +++ b/include/plist/Structure.h @@ -38,6 +38,8 @@ class Structure : public Node std::string ToXml(); std::vector<char> ToBin(); + + virtual void Remove(Node* node) = 0; protected: Structure(Node* parent = NULL); |