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