All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Classes | Namespaces | Macros | Typedefs
PluggableObserver.hpp File Reference

Header of ... More...

#include <openfluid/dllexport.hpp>
#include <openfluid/ware/SimulationInspectorWare.hpp>
#include <openfluid/ware/ObserverSignature.hpp>
#include <openfluid/base/LoopMacros.hpp>

Go to the source code of this file.

Classes

class  openfluid::ware::PluggableObserver
 

Namespaces

 openfluid
 
 openfluid::ware
 

Macros

#define DECLARE_OBSERVER_PLUGIN
 
#define DEFINE_OBSERVER_CLASS(pluginclassname)
 

Typedefs

typedef PluggableObserver *(* openfluid::ware::GetPluggableObserverBodyProc )()
 
typedef ObserverSignature *(* openfluid::ware::GetPluggableObserverSignatureProc )()
 

Detailed Description

Header of ...

Author
Jean-Christophe FABRE fabre.nosp@m.jc@s.nosp@m.upagr.nosp@m.o.in.nosp@m.ra.fr

Macro Definition Documentation

#define DECLARE_OBSERVER_PLUGIN
Value:
extern "C" \
{ \
}
#define WAREABIVERSION_PROC_DECL
Definition: PluggableWare.hpp:72
Definition: ObserverSignature.hpp:78
Definition: PluggableObserver.hpp:95
#define WAREBODY_PROC_DECL
Definition: PluggableWare.hpp:60
#define WARESIGNATURE_PROC_DECL
Definition: PluggableWare.hpp:66
#define DLLEXPORT
Definition: dllexport.hpp:51

Macro for declaration of observer and signature hooks

#define DEFINE_OBSERVER_CLASS (   pluginclassname)
Value:
std::string WAREABIVERSION_PROC_DECL() \
{ \
return std::string(openfluid::config::FULL_VERSION); \
} \
\
openfluid::ware::PluggableObserver* WAREBODY_PROC_DECL() \
{ \
return new pluginclassname(); \
}
#define WAREABIVERSION_PROC_DECL
Definition: PluggableWare.hpp:72
#define WAREBODY_PROC_DECL
Definition: PluggableWare.hpp:60

Macro for definition of observer class hook

Parameters
[in]pluginclassnameThe name of the class to instantiate