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