New (faster) representation for tags added; faster construction of parentheses
[SXSI/XMLTree.git] / libcds / src / static_sequence / static_sequence.h
index 0baf721..cf8a1e0 100644 (file)
@@ -27,6 +27,9 @@
 #include <iostream>
 
 #define WVTREE_HDR 2
+#define GMR_CHUNK_HDR 3
+#define GMR_HDR 4
+#define WVTREE_NOPTRS_HDR 5
 
 using namespace std;
 
@@ -55,7 +58,7 @@ public:
   virtual uint length();
 
   /** Returns how many cs are in the sequence */
-  virtual uint count(uint c)=0;
+  virtual uint count(uint c);
 
   /** Returns the size of the structure in bytes */
   virtual uint size()=0;
@@ -73,5 +76,8 @@ protected:
 };
 
 #include <static_sequence_wvtree.h>
+#include <static_sequence_gmr_chunk.h>
+#include <static_sequence_wvtree_noptrs.h>
+#include <static_sequence_gmr.h>
 
 #endif  /* _STATIC_SEQUENCE_H */