From 54c441564ab1052d4f778c1d43f3bd468917e3d1 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Tue, 21 Nov 2006 21:50:06 +0000 Subject: The static string works again...sigh... --- src/staticstring.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/staticstring.h') diff --git a/src/staticstring.h b/src/staticstring.h index c83f391..0d155c4 100644 --- a/src/staticstring.h +++ b/src/staticstring.h @@ -3,7 +3,7 @@ #include #include "serializable.h" -#include "hashable.h" +//#include "hashable.h" /** * Simple string managing class. Allows for dynamically allocated string data @@ -12,7 +12,7 @@ * and making accessing meta-info like length fast and reliable as well. *@author Mike Buland */ -class StaticString : public Serializable, public Hashable +class StaticString : public Serializable/*, public Hashable*/ { public: StaticString(); @@ -50,8 +50,8 @@ public: virtual void serialize( class Serializer &ar ); - virtual unsigned long int getHashCode(); - virtual bool compareForHash( Hashable &other ); + //virtual unsigned long int getHashCode(); + //virtual bool compareForHash( Hashable &other ); private: char *lpStr; -- cgit v1.2.3