|
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:
586 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 config.h
|
|---|
| 12 | #ifdef HAVE_CONFIG_H
|
|---|
| 13 | #include <config.h>
|
|---|
| 14 | #endif
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 | #include "CodePatterns/Observer/Observer.hpp"
|
|---|
| 18 |
|
|---|
| 19 | class Observable;
|
|---|
| 20 |
|
|---|
| 21 | class CommandLineStatusIndicator : public Observer
|
|---|
| 22 | {
|
|---|
| 23 | public:
|
|---|
| 24 | CommandLineStatusIndicator();
|
|---|
| 25 | virtual ~CommandLineStatusIndicator();
|
|---|
| 26 |
|
|---|
| 27 | void update(Observable *subject);
|
|---|
| 28 | void subjectKilled(Observable *subject);
|
|---|
| 29 |
|
|---|
| 30 | private:
|
|---|
| 31 |
|
|---|
| 32 | };
|
|---|
| 33 |
|
|---|
| 34 | #endif /* COMMANDLINESTATUSINDICATOR_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.