Serveur OPCUA générique
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Définitions de type Macros
cta_slc_argument.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_ARGUMENT_H
14 #define CTA_SLC_ARGUMENT_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 Argument: public ElementBase {
27 public:
28  Argument(xmlNodePtr noeud, std::string parent, int *type);
29 
30  void createNodes(UaPropertyMethodArgument *pPropertyArg, int index);
31  void parse();
32 private:
33  std::string m_access;
34  int m_arraySize;
35 };
36 
37 } // end namespace
38 #endif // CTA_SLC_ARGUMENT_H