source: src/UIElements/TextUI/TextStatusIndicator.hpp@ 88bb6b

Last change on this file since 88bb6b was 02ce36, checked in by Frederik Heber <heber@…>, 14 years ago

We now require CodePatterns 1.2.0.

  • this is due to the updated Observer structure and multi_array MemDebug bugfix.
  • Property mode set to 100644
File size: 521 bytes
RevLine 
[0188ea]1/*
2 * TextStatusIndicator.hpp
3 *
4 * Created on: Feb 18, 2010
5 * Author: crueger
6 */
7
8#ifndef TEXTSTATUSINDICATOR_HPP_
9#define TEXTSTATUSINDICATOR_HPP_
10
[56f73b]11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16
[02ce36]17#include "CodePatterns/Observer/Observer.hpp"
[0188ea]18
19class TextStatusIndicator : public Observer
20{
21public:
22 TextStatusIndicator();
23 virtual ~TextStatusIndicator();
24
25 void update(Observable *subject);
26 void subjectKilled(Observable *subject);
27
28private:
29
30};
31
32#endif /* TEXTSTATUSINDICATOR_HPP_ */
Note: See TracBrowser for help on using the repository browser.