![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2003 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 /******************************************************************************* 00006 ** $RCSfile: portData.h,v $ $Revision: 1.3 $ $State: Exp $ 00007 *******************************************************************************/ 00008 00012 00013 00014 #ifndef DtPortData_H_ 00015 #define DtPortData_H_ 00016 00017 class DtString; 00018 00024 #include "vrfobjcore/vrfobjcoreDefines.h" 00025 class DT_DLL_vrfobjcore DtPortData 00026 { 00027 public: 00029 DtPortData(); 00030 00032 virtual ~DtPortData(); 00033 00035 DtPortData(const DtPortData& orig); 00036 00038 DtPortData& operator=(const DtPortData& orig); 00039 00042 virtual const DtString type() const = 0; 00043 00045 virtual DtPortData* clone() const = 0; 00046 00047 protected: 00048 00049 }; 00050 00051 #endif