mirror of https://github.com/Icinga/icinga2.git
21 lines
365 B
C++
21 lines
365 B
C++
#ifndef CONFIGFILECOMPONENT_H
|
|
#define CONFIGFILECOMPONENT_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class ConfigFileComponent : public Component
|
|
{
|
|
public:
|
|
typedef shared_ptr<ConfigFileComponent> RefType;
|
|
typedef weak_ptr<ConfigFileComponent> WeakRefType;
|
|
|
|
virtual string GetName(void);
|
|
virtual void Start(void);
|
|
virtual void Stop(void);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CONFIGFILECOMPONENT_H */
|