source:
trunk/MagicSoft/Cosy/base/log.h@
732
| Last change on this file since 732 was 732, checked in by , 25 years ago | |
|---|---|
| File size: 155 bytes | |
| Line | |
|---|---|
| 1 | #ifndef LOG_H |
| 2 | #define LOG_H |
| 3 | |
| 4 | #include <ostream.h> |
| 5 | |
| 6 | class Log |
| 7 | { |
| 8 | protected: |
| 9 | ostream &lout; |
| 10 | |
| 11 | public: |
| 12 | Log(ostream &out=cout) : lout(out) {} |
| 13 | }; |
| 14 | |
| 15 | #endif |
Note:
See TracBrowser
for help on using the repository browser.
