00001
00002
00003
00004
00005
00006
00007
00008 #ifndef _SK_UTIL_STRINGHASH_
00009 #define _SK_UTIL_STRINGHASH_
00010
00011 #include <sk/util/Object.h>
00012 #include <sk/util/String.h>
00013 #include <map>
00014
00015 namespace sk {
00016 namespace util {
00017 class StringHash
00018 : public std::map<sk::util::String, sk::util::String>,
00019 public virtual sk::util::Object
00020 {
00021 public:
00022 StringHash();
00023 virtual ~StringHash();
00024
00025
00026 const sk::util::Class getClass() const;
00027
00028 private:
00029 };
00030 }
00031 }
00032
00033 #endif