icinga2/configfilecomponent/configfilecomponent.h
2012-03-31 16:26:51 +02:00

20 lines
373 B
C++

#ifndef I2_CONFIGFILECOMPONENT_H
#define I2_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 /* I2_CONFIGFILECOMPONENT_H */