// Copyright (c) Sean Walton 1999-2006 All rights reserved // // Standard disclaimer: you use it --> you're responsible // Standard license: you can use it in any way, but keep // my copyright attached. #ifndef STRINGSET_H #define STRINGSET_H #include "BBShared.h" class StringSet { private: char *Blob; u16 Used, Size, Increment; public: StringSet(u16 StartSize=256, u16 Inc=64); virtual ~StringSet(void); public: u16 Add(const char* str); const char* GetString(u16 Index) const { return Blob+Index; } }; #endif