X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=StorageInterface.h;fp=StorageInterface.h;h=0000000000000000000000000000000000000000;hb=99ac0ee0d0f85549a19b5e96442caa5a56f95a78;hp=843a55eb42a2fb24424838862eec0e686e7ee626;hpb=04639fe524ee20f7f84c8b08387312d714c9bd56;p=SXSI%2Fxpathcomp.git diff --git a/StorageInterface.h b/StorageInterface.h deleted file mode 100644 index 843a55e..0000000 --- a/StorageInterface.h +++ /dev/null @@ -1,36 +0,0 @@ -/************************************* - * StorageInterface.h - * --------------------- - * Header file for abstract class defining a storage interface. - * - * Author: Greg Leighton - * Date: 02/11/08 - * - * Changes: - * 05/11/08 -- Added returnDocument() method - */ - - -#ifndef STORAGEINTERFACE_H_ -#define STORAGEINTERFACE_H_ - -#include - -using namespace std; - -class StorageInterface -{ - public: - virtual ~StorageInterface(); - virtual void newChild(string name) = 0; - virtual void newText(string text) = 0; - virtual void nodeFinished(string name) = 0; - virtual void parsingFinished() = 0; - virtual void* returnDocument() = 0; - virtual void printStats() = 0; - private: - - -}; - -#endif /*STORAGEINTERFACE_H_*/