![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2006 MAK Technologies, Inc.** All rights reserved. 00003 ******************************************************************************/ 00004 /******************************************************************************* 00005 * $RCSfile: vpfIntData.h,v $ $Revision: 1.6 $ $State: Exp $ 00006 ******************************************************************************/ 00007 00008 #ifndef VPF_INT_DATA_H_ 00009 #define VPF_INT_DATA_H_ 00010 00013 00014 #include "vmap/vpfData.h" 00015 #include "vmap/vmapDefines.h" 00016 00018 class DT_DLL_vmap DtVpfIntData : public DtVpfData 00019 { 00020 private: 00022 DtVpfIntData(const DtVpfIntData& intData); 00023 00025 DtVpfIntData& operator=(const DtVpfIntData& intData); 00026 00027 public: 00029 DtVpfIntData(DtVpfColumn* column); 00030 00032 ~DtVpfIntData(); 00033 00036 virtual bool readData(); 00037 00040 virtual int intData() const; 00041 00044 virtual DtString valueDescription() const; 00045 00046 protected: 00047 int myInt; 00048 }; 00049 00050 #endif