VR-Link API Documentation for DIS
myFomMap.h
Go to the documentation of this file.
1 /*********************************************************************
2 ** Copyright (c) 1998 MaK Technologies, Inc.
3 ** All rights reserved.
4 *********************************************************************/
5 #pragma once
6 
7 
8 // Export Symbols on Windows (and do nothing on Linux)
9 #if DT_NEED_DLL_DECLARATIONS
10 #ifdef DT_DLL_FOMMAP
11 #undef DT_DLL_FOMMAP
12 #define DT_DLL_FOMMAP __declspec( dllexport )
13 #else
14 #define DT_DLL_FOMMAP __declspec( dllimport )
15 #endif
16 #else
17 #ifdef DT_DLL_FOMMAP
18 #undef DT_DLL_FOMMAP
19 #endif
20 #define DT_DLL_FOMMAP
21 #endif
22 
23 
24 #if DtHLA
25 
26 #include <vl/rprFomMap.h>
27 
35 class DT_DLL_FOMMAP MyFomMapper : public DtRprFomMapper
36 {
37 public:
38 
39  // Default constructor - most initialization is delayed until init() is
40  // called.
41  MyFomMapper();
42 
43  // Destructor
44  virtual ~MyFomMapper();
45 
46  // Virtual function override. init actually initializes most data. It is
47  // called from DtExerciseConn constructor. Required.
48  virtual void init(DtExerciseConn* conn);
49 protected:
50 
51  // Copy Ctor Not implemented
52  MyFomMapper(const MyFomMapper&orig);
53 
54  MyFomMapper &operator=(const MyFomMapper &orig);
55 };
56 
57 #endif

Document ID: Generated on Wed Aug 14 15:35:11 EDT 2013 from SVN revision 130445
Copyright © 2005-2013 VT MÄK. All Rights Reserved (www.mak.com)