00001 /* 00002 * $Id: skRValueArray_h-source.html,v 1.5 2001/05/09 10:32:28 sdw Exp $ 00003 */ 00004 #ifndef skRVALUEARRAY_H 00005 #define skRVALUEARRAY_H 00006 00007 #include "skRValue.h" 00008 #include "skValist.h" 00009 00010 00014 class skRValueArray : public skTVAList<skRValue> 00015 { 00016 public: 00020 skRValueArray() {} 00024 skRValueArray(unsigned short size) 00025 : skTVAList<skRValue>(size,size) {} 00026 }; 00027 #endif 00028 00029 00030