00001 00006 #ifndef skRVALUETABLE_H 00007 #define skRVALUETABLE_H 00008 00009 #include "skHashTable.h" 00010 #include "skRValue.h" 00011 00014 class skRValueTable: public skTHashTable<skString,skRValue> 00015 { 00016 public: 00017 skRValueTable(unsigned short size) 00018 : skTHashTable<skString,skRValue>(size){ 00019 } 00020 skRValueTable(){ 00021 } 00022 ~skRValueTable(){ 00023 } 00024 00025 }; 00026 00027 #endif