![]() |
MAK RTIspy API Documentation for HLA Evolved
|
00001 /********************************************************************* 00002 ** Copyright (c) 1998 MaK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /********************************************************************* 00006 ** $RCSfile: fedFileMap.h,v $ $Revision: 1.9 $ $State: Exp $ 00007 *********************************************************************/ 00008 00011 00012 #ifndef DtFedFileMapping_H_ 00013 #define DtFedFileMapping_H_ 00014 00015 #include "rtiMsConfig.h" 00016 #include <vlutil/vlString.h> 00017 00022 00023 class DT_DLL_LRC DtFedFileMapping 00024 { 00025 public: 00026 00028 DtFedFileMapping(const MAKRti::DtString& execName, const MAKRti::DtString& timeImplName, 00029 const MAKRti::DtString& fileName); 00030 00032 virtual const MAKRti::DtString& fedFileName() const; 00033 00035 virtual const MAKRti::DtString& timeImplName() const; 00036 00038 virtual const MAKRti::DtString& execName() const; 00039 00041 virtual ~DtFedFileMapping(); 00042 00043 protected: 00044 00046 DtFedFileMapping(const DtFedFileMapping& orig); 00047 00049 DtFedFileMapping& operator=(const DtFedFileMapping& orig); 00050 00051 protected: 00052 00053 MAKRti::DtString myExecName; 00054 MAKRti::DtString myTimeImplName; 00055 MAKRti::DtString myFileName; 00056 }; 00057 00058 #endif