icinga2/configfilecomponent/configfilecomponent.h

21 lines
365 B
C
Raw Normal View History

#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 */