#include "kshell.h" /** * @brief bundle activator implementation for config */ class BundleActivator_logger : public BundleActivator { public: /** * @brief ctor */ BundleActivator_logger(); /** * @brief dtor */ virtual ~BundleActivator_logger(); /** * @brief will be called when bundle starting */ virtual void start(BundleContext* context) throw(BundleException); /** * @brief will be called when bundle stopping */ virtual void stop(BundleContext* context) throw(BundleException); /** * @brief get context */ BundleContext* getContext(); private: BundleContext* _context; };