Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
IProperty.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_IPROPERTY_H
2 #define GAUDIKERNEL_IPROPERTY_H
3 
4 // Include Files
7 #include <iostream>
8 #include <string>
9 #include <vector>
10 
20 class GAUDI_API IProperty : virtual public IInterface {
21 public:
24 
26  virtual StatusCode setProperty( const Gaudi::Details::PropertyBase& p // Reference to the input property
27  ) = 0;
29  virtual StatusCode setProperty( const std::string& s ) = 0;
31  virtual StatusCode setProperty( const std::string& n, const std::string& v ) = 0;
33  virtual StatusCode getProperty( Gaudi::Details::PropertyBase* p // Pointer to property to be set
34  ) const = 0;
36  virtual const Gaudi::Details::PropertyBase& getProperty( const std::string& name // Property name
37  ) const = 0;
39  virtual StatusCode getProperty( const std::string& n, std::string& v ) const = 0;
42 
44  virtual bool hasProperty( const std::string& name ) const = 0;
45 };
46 #endif // GAUDIKERNEL_IPROPERTY_H
StatusCode setProperty(IProperty *component, const std::string &name, const TYPE &value, const std::string &doc)
simple function to set the property of the given object from the value
Definition: Property.h:1178
STL class.
bool hasProperty(const std::string &name) const override
Return true if we have a property with the given name.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:50
#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
PropertyBase base class allowing PropertyBase* collections to be "homogeneous".
Definition: Property.h:32
string s
Definition: gaudirun.py:312
The IProperty is the basic interface for all components which have properties that can be set or get...
Definition: IProperty.h:20
const std::vector< Gaudi::Details::PropertyBase * > & getProperties() const override
get all properties
#define GAUDI_API
Definition: Kernel.h:71
GAUDI_API Gaudi::Details::PropertyBase * getProperty(const IProperty *p, const std::string &name)
simple function which gets the property with given name from the component
Definition: Property.cpp:204