MAK Data Logger API Documentation for HLA
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
lgrDimensionDesc.h
Go to the documentation of this file.
1 /*********************************************************************
2 ** Copyright (c) 1992-2025 MAK Technologies, Inc
3 ** All rights reserved.
4 *********************************************************************/
5 
6 #ifndef lgrDimensionDesc_H_
7 #define lgrDimensionDesc_H_
8 
10 
11 #if DtHLA
12 
13 #include <lgrSim/lgrSim.h>
14 
15 #include <vlutil/vlString.h>
16 
17 class DtExerciseConn;
18 
19 namespace MAKLogger
20 {
21 
22  class DtLgrSpaceDesc;
23 
26  {
27  public:
28 
29  // Constructor 1516(e)
30  DtLgrDimensionDesc(const DtString &name, unsigned long upperBound,
31  unsigned long defaultLowerBound, unsigned long defaultUpperBound,
32  bool excluded, DtExerciseConn *exConn);
33 
34  // Constructor 1.3
35  DtLgrDimensionDesc(const DtString &name, DtLgrSpaceDesc *space, DtExerciseConn* exConn);
36 
37  virtual ~DtLgrDimensionDesc();
38 
39  virtual DtString name() const;
40 
41 
42  // 1516(e) DDM
43  virtual unsigned long upperBound() const;
44  virtual unsigned long defaultLowerBound() const;
45  virtual unsigned long defaultUpperBound() const;
46  virtual bool excluded() const;
47 
48  // 1.3 DDM
49  virtual const DtLgrSpaceDesc *space() const;
50 
51  private:
53  // in principle, dimensions could be copied, but they contain a reference to the
54  // DtExerciseConn, so doing so would be of dubious validity and usefulness
57  DtLgrDimensionDesc &operator=(DtLgrDimensionDesc &rhs);
58 
59  protected:
62 
63  // 1516(e) DDM
64  unsigned long myUpperBound;
65  unsigned long myDefaultLowerBound;
66  unsigned long myDefaultUpperBound;
67  bool myExcluded;
68 
69  // 1.3 DDM
71  };
72 
73 }
74 
75 #endif
76 #endif
Defines IMPORT/EXPORT macros for lgrSim library.
#define DT_DLL_LGRSIM
Definition: lgrSim.h:21
This class describes a dimension as listed in the FOM.
Definition: lgrDimensionDesc.h:25
unsigned long myUpperBound
Definition: lgrDimensionDesc.h:64
DtString myName
Definition: lgrDimensionDesc.h:61
unsigned long myDefaultUpperBound
Definition: lgrDimensionDesc.h:66
DtLgrSpaceDesc * mySpace
Definition: lgrDimensionDesc.h:70
bool myExcluded
Definition: lgrDimensionDesc.h:67
DtExerciseConn * myExConn
Definition: lgrDimensionDesc.h:60
This class describes a routing space as listed in the FOM.
Definition: lgrSpaceDesc.h:29
unsigned long myDefaultLowerBound
Definition: lgrDimensionDesc.h:65

Document ID: Generated on Thu Dec 18 15:35:09 EST 2025 from SVN revision 282494
Copyright © 2024 MAK Technologies. All Rights Reserved (www.mak.com)