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: 00022 skRValueTable(unsigned short size) 00023 : skTHashTable<skString,skRValue>(size){ 00024 } 00026 skRValueTable(){ 00027 } 00029 ~skRValueTable(){ 00030 } 00031 00032 }; 00033 00034 #endif