Last change
on this file since 25e17e9 was 536380, checked in by Tillmann Crueger <crueger@…>, 16 years ago |
Added a progress indicator for the text menu
|
-
Property mode
set to
100644
|
File size:
438 bytes
|
Line | |
---|
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 |
|
---|
11 | #include "Patterns/Observer.hpp"
|
---|
12 |
|
---|
13 | class TextStatusIndicator : public Observer
|
---|
14 | {
|
---|
15 | public:
|
---|
16 | TextStatusIndicator();
|
---|
17 | virtual ~TextStatusIndicator();
|
---|
18 |
|
---|
19 | void update(Observable *subject);
|
---|
20 | void subjectKilled(Observable *subject);
|
---|
21 |
|
---|
22 | private:
|
---|
23 |
|
---|
24 | };
|
---|
25 |
|
---|
26 | #endif /* TEXTSTATUSINDICATOR_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.