#ifndef CONFIGFILECOMPONENT_H #define CONFIGFILECOMPONENT_H namespace icinga { class ConfigFileComponent : public Component { public: typedef shared_ptr RefType; typedef weak_ptr WeakRefType; virtual string GetName(void); virtual void Start(void); virtual void Stop(void); }; } #endif /* CONFIGFILECOMPONENT_H */