Serveur OPCUA générique
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Définitions de type Macros
cta_slc_plugins.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_PLUGINSLOADER_H
14 #define CTA_SLC_PLUGINSLOADER_H
15 
17 
19  typedef DataSenderReceiver *(*maker_Plugins)();
20 public:
21  // construction / destruction
22  PluginsLoader(std::string mylibFile, std::string className);
25 
26 private:
27  void *hndl;
28  std::string m_myLibFile;
29  std::string m_className;
30  DataSenderReceiver *m_classRef;
31 };
32 
33 //} // end namespace
34 #endif // CTA_SLC_PLUGINSLOADER_H