IEC61970 17v23
UncefactUnitCode.h
1 // UncefactUnitCode.h
3 // Implementation of the Class UncefactUnitCode
4 // Original author: SELAOST1
6 
7 #ifndef UNCEFACTUNITCODE_H
8 #define UNCEFACTUNITCODE_H
9 
10 #include "BaseClass.h"
11 #include "IEC61970/Base/Domain/String.h"
12 
13 namespace IEC61970
14 {
15  namespace Base
16  {
17  namespace Domain
18  {
24  class UncefactUnitCode : public BaseClass
25  {
26 
27  public:
29  virtual ~UncefactUnitCode();
30  IEC61970::Base::Domain::String value;
31 
32  };
33 
34  }
35 
36  }
37 
38 }
39 #endif // UNCEFACTUNITCODE_H
Definition: AuxiliaryEquipment.h:13
Definition: BaseClass.h:6
Definition: UncefactUnitCode.h:24