CIM++ Adapted CIM Codebase
String.h
1 // String.h
3 // Implementation of the Class String
5 
6 #ifndef STRING_H
7 #define STRING_H
8 
9 #include <string>
10 
11 namespace IEC61970
12 {
13  namespace Base
14  {
15  namespace Domain
16  {
21  typedef std::string String;
22 
23  }
24 
25  }
26 
27 }
28 #endif // STRING_H
Definition: AuxiliaryEquipment.h:13