Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2265 kivins 1
//## begin module%1.7%.codegen_version preserve=yes
2
//   Read the documentation to learn more about C++ code generator
3
//   versioning.
4
//## end module%1.7%.codegen_version
5
 
6
//## begin module%4209C5FB02C3.cm preserve=no
7
//## end module%4209C5FB02C3.cm
8
 
9
//## begin module%4209C5FB02C3.cp preserve=no
10
//	C O P Y R I G H T   N O T I C E
11
//	This material is confidential to ERG and may not be disclosed in whole
12
//	or in part to any third party nor used in any manner whatsoever other
13
//	than for the purposes expressly consented to by ERG in writing.
14
//
15
//	This material is also copyright and may not be reproduced, stored in a
16
//	retrieval system or transmitted in any form or by any means in whole or
17
//	in part without the express written consent of ERG.
18
//## end module%4209C5FB02C3.cp
19
 
20
//## Module: VariableTable%4209C5FB02C3; Pseudo Package specification
21
//## Subsystem: MASS::Dev::Tools::TxnTestManager::src%41F5A79001E4
22
//## Source file: Z:\MASS_Dev\Tools\TxnTestManager\src\VariableTable.h
23
 
24
#ifndef VariableTable_h
25
#define VariableTable_h 1
26
 
27
//## begin module%4209C5FB02C3.additionalIncludes preserve=no
28
//## end module%4209C5FB02C3.additionalIncludes
29
 
30
//## begin module%4209C5FB02C3.includes preserve=yes
31
//## end module%4209C5FB02C3.includes
32
 
33
 
34
class DefinedVariable;
35
 
36
//## begin module%4209C5FB02C3.additionalDeclarations preserve=yes
37
//## end module%4209C5FB02C3.additionalDeclarations
38
 
39
 
40
//## begin VariableTable%4209C5FB02C3.preface preserve=yes
41
#include <map>
42
#include <string>
43
//## end VariableTable%4209C5FB02C3.preface
44
 
45
//## Class: VariableTable%4209C5FB02C3
46
//	The table of defined variables and their values.
47
//## Category: TransactionTestManager::Symbol Table%4209C5C30033
48
//## Subsystem: MASS::Dev::Tools::TxnTestManager::src%41F5A79001E4
49
//## Persistence: Transient
50
//## Cardinality/Multiplicity: n
51
 
52
 
53
 
54
class VariableTable 
55
{
56
  //## begin VariableTable%4209C5FB02C3.initialDeclarations preserve=yes
57
  //## end VariableTable%4209C5FB02C3.initialDeclarations
58
 
59
  public:
60
    //## Constructors (generated)
61
      VariableTable();
62
 
63
    //## Destructor (generated)
64
      virtual ~VariableTable();
65
 
66
    // Additional Public Declarations
67
      //## begin VariableTable%4209C5FB02C3.public preserve=yes
68
      //## end VariableTable%4209C5FB02C3.public
69
 
70
  protected:
71
    // Additional Protected Declarations
72
      //## begin VariableTable%4209C5FB02C3.protected preserve=yes
73
      //## end VariableTable%4209C5FB02C3.protected
74
 
75
  private:
76
    //## Constructors (generated)
77
      VariableTable(const VariableTable &right);
78
 
79
    //## Assignment Operation (generated)
80
      VariableTable & operator=(const VariableTable &right);
81
 
82
    // Data Members for Associations
83
 
84
      //## Association: TransactionTestManager::Symbol Table::<unnamed>%4209C65E02D3
85
      //## Role: VariableTable::variable%4209C65F0013
86
      //	The collection of defined variables.
87
      //## Qualifier: variableName%4209C66701AA; std::string
88
      //	The name of the variable.
89
      //## begin VariableTable::variable%4209C65F0013.role preserve=no  private: DefinedVariable {1 -> 1RFHgAN}
90
      std::map<std::string, DefinedVariable *> m_variable;
91
      //## end VariableTable::variable%4209C65F0013.role
92
 
93
    // Additional Private Declarations
94
      //## begin VariableTable%4209C5FB02C3.private preserve=yes
95
      //## end VariableTable%4209C5FB02C3.private
96
 
97
  private: //## implementation
98
    // Additional Implementation Declarations
99
      //## begin VariableTable%4209C5FB02C3.implementation preserve=yes
100
      //## end VariableTable%4209C5FB02C3.implementation
101
 
102
};
103
 
104
//## begin VariableTable%4209C5FB02C3.postscript preserve=yes
105
//## end VariableTable%4209C5FB02C3.postscript
106
 
107
// Class VariableTable 
108
 
109
//## begin module%4209C5FB02C3.epilog preserve=yes
110
//## end module%4209C5FB02C3.epilog
111
 
112
 
113
#endif