removed cruft, fixed ptset.ml
[SXSI/xpathcomp.git] / StorageInterface.h
index c6f94aa..843a55e 100644 (file)
@@ -20,13 +20,17 @@ 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;
+       virtual void printStats() = 0;
+ private:
+       
+
 };
 
 #endif /*STORAGEINTERFACE_H_*/