Serveur OPCUA générique
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Définitions de type Macros
cta_slc_fsm.h
Aller à la documentation de ce fichier.
1 #ifndef __CTA_SLC_FSMCONFIG_H__
2 #define __CTA_SLC_FSMCONFIG_H__
3 
5 
6 namespace CTA_Slc_Dict {
7 
9 
10 public:
12  FinateStateMachineConfig(std::string nameFSM, std::string parent);
14  void addElement(xmlNodePtr racine, std::string parent);
15  std::string getParent();
16  void createNodes(CTA_UA::ControllerObject *pControler);
17 private:
18  void parse();
19  void buildRelatifNode(std::string chaine, std::string &sequenceNode);
20  UaMethodGeneric* m_pMethod;
21  CTA_UA::ControllerObject *m_pControler;
22 };
23 
24 }
25 #endif
26