Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
IPublishSvc.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_IPUBLISH_H
2 #define GAUDIKERNEL_IPUBLISH_H
3 
5 #include <string>
6 
14 class GAUDI_API IPublishSvc : virtual public IInterface {
15 public:
18 
23  virtual void declarePubItem( const std::string& name, const bool& var ) = 0;
24  virtual void declarePubItem( const std::string& name, const int& var ) = 0;
25  virtual void declarePubItem( const std::string& name, const long& var ) = 0;
26  virtual void declarePubItem( const std::string& name, const double& var ) = 0;
27  virtual void declarePubItem( const std::string& name, const std::string& var ) = 0;
28 
33  virtual void undeclarePubItem( const std::string& name ) = 0;
37  virtual void undeclarePubAll() = 0;
42  virtual void updateItem( const std::string& name ) = 0;
43 
46  virtual void updateAll() = 0;
47 };
48 
49 #endif // GAUDIKERNEL_IPUBLISH_H
Definition of the IPublishSvc interface, which publishes variables to outside monitoring processes...
Definition: IPublishSvc.h:14
STL class.
#define DeclareInterfaceID(iface, major, minor)
Macro to declare the interface ID when using the new mechanism of extending and implementing interfac...
Definition: IInterface.h:13
Definition of the basic interface.
Definition: IInterface.h:244
#define GAUDI_API
Definition: Kernel.h:71