/* * CommandLineStatusIndicator.hpp * * Created on: May 8, 2010 * Author: heber */ #ifndef COMMANDLINESTATUSINDICATOR_HPP_ #define COMMANDLINESTATUSINDICATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/Observer.hpp" class CommandLineStatusIndicator : public Observer { public: CommandLineStatusIndicator(); virtual ~CommandLineStatusIndicator(); void update(Observable *subject); void subjectKilled(Observable *subject); private: }; #endif /* COMMANDLINESTATUSINDICATOR_HPP_ */