00001 /* 00002 * $Id: skRValueArray_h-source.html,v 1.19 2001/11/05 19:22:33 sdw Exp $ 00003 */ 00004 #ifndef skRVALUEARRAY_H 00005 #define skRVALUEARRAY_H 00006 00007 #include "skRValue.h" 00008 #include "skValist.h" 00009 00010 EXTERN_TEMPLATE template class CLASSEXPORT skTVAList<skRValue>; 00011 00015 class CLASSEXPORT skRValueArray : public skTVAList<skRValue> 00016 { 00017 public: 00021 skRValueArray() {} 00025 skRValueArray(unsigned short size) 00026 : skTVAList<skRValue>(size,size) {} 00027 }; 00028 #endif 00029 00030 00031