VR-Link API Documentation for DIS
hReflLinearObj.h
Go to the documentation of this file.
1 /*********************************************************************
2 ** Copyright (c) 1992-2010 VT MAK
3 ** All rights reserved.
4 *********************************************************************/
5 
6 
7 #ifndef hReflLinearObj_H_
8 #define hReflLinearObj_H_
9 
10 #if DtHLA
11 
12 #include "linearObjSR.h"
13 #include "hReflectedObj.h"
14 
19 
22 class DT_DLL_VL DtReflectedLinearObject;
23 typedef void (*DtLinearObjectCallbackFunction)(
24  DtReflectedLinearObject* obj, void* userData);
25 
30 
31 class DT_DLL_VL DtReflectedLinearObject : public DtReflectedObject
32 {
33 public:
34 
36  typedef DtLinearObjectRepository* (*DtStateRepCreator)();
37 
38 public:
39 
41  DtReflectedLinearObject(DtHlaObject* obj, DtExerciseConn* conn);
42 
44  virtual ~DtReflectedLinearObject();
45 
47  virtual DtLinearObjectRepository* linearObjectRep() const;
48 
50  virtual DtLinearObjectRepository* losr() const;
51 
53  virtual DtReflectedLinearObject* next() const;
54 
56  virtual DtReflectedLinearObject* prev() const;
57 
60  virtual DtReflectedLinearObject* wrapNext() const;
61 
64  virtual DtReflectedLinearObject* wrapPrev() const;
65 
67  virtual void addPostUpdateCallback(
68  DtLinearObjectCallbackFunction cb, void* userData);
69 
70  virtual void removePostUpdateCallback(
71  DtLinearObjectCallbackFunction cb, void* userData);
72 
73 public:
74 
76  static DtStateRepCreator setStateRepCreator(DtStateRepCreator creator);
77 
78 protected:
79 
81  DtReflectedLinearObject(const DtReflectedLinearObject& orig);
82 
84  DtReflectedLinearObject& operator=(const DtReflectedLinearObject& orig);
85 
86 protected:
87 
88  static DtStateRepCreator theStateRepCreator;
89 };
90 
91 inline DtLinearObjectRepository* DtReflectedLinearObject::linearObjectRep() const
92 {
93  return (DtLinearObjectRepository*) myStateRep;
94 }
95 
96 inline DtLinearObjectRepository* DtReflectedLinearObject::losr() const
97 {
98  return (DtLinearObjectRepository*) myStateRep;
99 }
100 
101 #endif //DtHLA
102 #endif //hReflLinearObj_H_
103 

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)