X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=StorageInterface.h;h=5af866f612fe897d5d206f58e8c97499b8000787;hb=77294fdd983393727bcee7fda52dacdaf943e585;hp=c6f94aab772b21051dcd4e67be88436107c6dbfd;hpb=280fbebb046069cea454507fa7933b4330bff1eb;p=SXSI%2Fxpathcomp.git diff --git a/StorageInterface.h b/StorageInterface.h index c6f94aa..5af866f 100644 --- a/StorageInterface.h +++ b/StorageInterface.h @@ -20,13 +20,16 @@ using namespace std; class StorageInterface { -public: + public: virtual ~StorageInterface(); virtual void newChild(string name) = 0; virtual void newText(string text) = 0; - virtual void nodeFinished() = 0; + virtual void nodeFinished(string name) = 0; virtual void parsingFinished() = 0; virtual void* returnDocument() = 0; + private: + + }; #endif /*STORAGEINTERFACE_H_*/