MAK RTIspy API Documentation for HLA 1516
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
momInterCbInfo.h
Go to the documentation of this file.
1 /*********************************************************************
2 ** Copyright (c) 1998 MaK Technologies, Inc.
3 ** All rights reserved.
4 *********************************************************************/
5 /*********************************************************************
6 ** $RCSfile: momInterCbInfo.h,v $ $Revision: 1.4 $ $State: Exp $
7 *********************************************************************/
8 
11 
12 #ifndef DtMomInterCallbackInfo_H_
13 #define DtMomInterCallbackInfo_H_
14 #ifdef DtMOM
15 
16 #include "rtiMsConfig.h"
17 #include "momInterCbMgr.h"
18 
21 class DT_DLL_LRC DtMomInterCallbackInfo
22 {
23 public:
24 
26  DtMomInterCallbackInfo(DtMomInterCallbackFcn func, void* usr);
27 
29  virtual ~DtMomInterCallbackInfo();
30 
32  DtMomInterCallbackInfo(const DtMomInterCallbackInfo& orig);
33 
35  DtMomInterCallbackInfo& operator=(const DtMomInterCallbackInfo& orig);
36 
38  bool operator==(const DtMomInterCallbackInfo& orig) const;
39 
41  bool operator<(const DtMomInterCallbackInfo& orig) const;
42 
44  virtual DtMomInterCallbackFcn func() const;
45 
47  virtual void* usr() const;
48 
49 protected:
50 
51  DtMomInterCallbackFcn myFunc;
52  void* myUsr;
53 
54 };
55 
56 inline DtMomInterCallbackFcn DtMomInterCallbackInfo::func() const
57 {
58  return myFunc;
59 }
60 
61 inline void* DtMomInterCallbackInfo::usr() const
62 {
63  return myUsr;
64 }
65 
66 #endif
67 #endif
#define DT_DLL_LRC
Definition: rtiMsConfig.h:155

Document ID: Generated on Wed Jul 8 16:20:32 EDT 2026 from SVN revision 291616
Copyright © 2005-2025 MAK Technologies Inc. All Rights Reserved (www.mak.com)