Last change
on this file since 2e06c4 was 83afe0, checked in by Frederik Heber <heber@…>, 15 years ago |
Extended UIFactory to a CommandLine derivate.
Signed-off-by: Frederik Heber <heber@…>
|
-
Property mode
set to
100644
|
File size:
484 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * CommandLineStatusIndicator.hpp
|
---|
3 | *
|
---|
4 | * Created on: May 8, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef COMMANDLINESTATUSINDICATOR_HPP_
|
---|
9 | #define COMMANDLINESTATUSINDICATOR_HPP_
|
---|
10 |
|
---|
11 | #include "Patterns/Observer.hpp"
|
---|
12 |
|
---|
13 | class CommandLineStatusIndicator : public Observer
|
---|
14 | {
|
---|
15 | public:
|
---|
16 | CommandLineStatusIndicator();
|
---|
17 | virtual ~CommandLineStatusIndicator();
|
---|
18 |
|
---|
19 | void update(Observable *subject);
|
---|
20 | void subjectKilled(Observable *subject);
|
---|
21 |
|
---|
22 | private:
|
---|
23 |
|
---|
24 | };
|
---|
25 |
|
---|
26 | #endif /* COMMANDLINESTATUSINDICATOR_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.