Serveur OPCUA générique
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Définitions de type Macros
cta_slc_alarm.h
Aller à la documentation de ce fichier.
1 /******************************************************************************
2  **
3  **
4  ** Copyright (C) LAPP. CNRS
5  **
6  ** Project: C++ OPCUA generique
7  **
8  ** Description:
9  **
10  ** Author : Panazol Jean Luc
11  ******************************************************************************/
12 
13 #ifndef CTA_SLC_ALARM_H
14 #define CTA_SLC_ALARM_H
15 
16 #include <list>
17 #include <string>
18 #include <libxml/parser.h>
19 #include <libxml/xpath.h>
20 #include "cta_ua_nodemanager.h"
21 #include "cta_slc_objectUA.h"
22 #include <vector>
23 
24 namespace CTA_Slc_Dict {
25 
26 class AlarmStruct;
27 
28 class Alarm: public ElementBase {
29 public:
30  Alarm(xmlNodePtr noeud, std::string parent);
31  ~Alarm();
32 
33  void createNodes(UaPropertyMethodArgument *pPropertyArg, int index);
34  void parse();
36 private:
37  std::string m_access;
38  AlarmStruct* m_alarmStruct;
39 };
40 } // end namespace
41 
42 #endif // CTA_SLC_ALARM_H