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