source: branches/Release12/src/SDLog.h@ 1151

Last change on this file since 1151 was 717, checked in by mar637, 19 years ago

implemented use of SDLog

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 379 bytes
Line 
1#ifndef SDLOG_H
2#define SDLOG_H
3
4#include <string>
5#include <iostream>
6
7namespace asap {
8
9class SDLog {
10public:
11 SDLog();
12 SDLog(bool enabled);
13 void pushLog(const std::string& s) const;
14 //void pushLog(const char* cs);
15 std::string popLog() const;
16 virtual void enableLog();
17 virtual void disableLog();
18private:
19 static std::string log_;
20 bool enabled_;
21};
22
23}
24
25#endif
26
Note: See TracBrowser for help on using the repository browser.