|
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
|
| Rev | Line | |
|---|
| [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 |
|
|---|
| 19 | class TextStatusIndicator : public Observer
|
|---|
| 20 | {
|
|---|
| 21 | public:
|
|---|
| 22 | TextStatusIndicator();
|
|---|
| 23 | virtual ~TextStatusIndicator();
|
|---|
| 24 |
|
|---|
| 25 | void update(Observable *subject);
|
|---|
| 26 | void subjectKilled(Observable *subject);
|
|---|
| 27 |
|
|---|
| 28 | private:
|
|---|
| 29 |
|
|---|
| 30 | };
|
|---|
| 31 |
|
|---|
| 32 | #endif /* TEXTSTATUSINDICATOR_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.