00001 00021 #ifndef skRVALUETABLE_H 00022 #define skRVALUETABLE_H 00023 00024 #include "skHashTable.h" 00025 #include "skRValue.h" 00026 00027 EXTERN_TEMPLATE template class CLASSEXPORT skTHashTable<skString,skRValue>; 00028 00031 class CLASSEXPORT skRValueTable: public skTHashTable<skString,skRValue> 00032 { 00033 public: 00037 skRValueTable(unsigned short size) 00038 : skTHashTable<skString,skRValue>(size){ 00039 } 00041 skRValueTable(){ 00042 } 00044 ~skRValueTable(){ 00045 } 00046 00047 }; 00048 00049 #endif