Last change
on this file since 2904 was 1818, checked in by Kana Sugimoto, 14 years ago |
New Development: Yes
JIRA Issue: No (merge)
Ready for Test: Yes
Interface Changes: No
Description:
Merged changes -r1774:1817 in newfiller branch to alma branch
|
File size:
1.1 KB
|
Rev | Line | |
---|
[1797] | 1 | //
|
---|
| 2 | // C++ Interface: AsapLogSink
|
---|
| 3 | //
|
---|
| 4 | // Description:
|
---|
| 5 | //
|
---|
| 6 | //
|
---|
| 7 | // Author: Malte Marquarding <asap@atnf.csiro.au>, (C) 2010
|
---|
| 8 | //
|
---|
| 9 | // Copyright: See COPYING file that comes with this distribution
|
---|
| 10 | //
|
---|
| 11 | //
|
---|
| 12 | #ifndef ASAPLOGSINK_H
|
---|
| 13 | #define ASAPLOGSINK_H
|
---|
| 14 |
|
---|
| 15 | #include <casa/Logging/MemoryLogSink.h>
|
---|
| 16 | #include <string>
|
---|
| 17 |
|
---|
| 18 | namespace asap {
|
---|
| 19 | /**
|
---|
| 20 | * This class provides the a casa::LogSink implementation for asap
|
---|
| 21 | * It should be used to catch all casa logMessage and replace the globalSink.
|
---|
| 22 | * It provides an overloaded postLocally which accepts strings so it can also
|
---|
| 23 | * be used from python.
|
---|
| 24 | * @brief The ASAP logging class
|
---|
| 25 | * @author Malte Marquarding
|
---|
| 26 | * @date $Date: $
|
---|
| 27 | * @version
|
---|
| 28 | */
|
---|
| 29 | class AsapLogSink : public casa::MemoryLogSink {
|
---|
| 30 | public:
|
---|
| 31 | /**
|
---|
| 32 | * Default Constructor
|
---|
| 33 | **/
|
---|
| 34 | AsapLogSink() {;} ;
|
---|
| 35 |
|
---|
| 36 | virtual ~AsapLogSink() {;};
|
---|
| 37 |
|
---|
| 38 | virtual void postMessage(const std::string& msg,
|
---|
| 39 | const std::string& location="",
|
---|
| 40 | const std::string& priority="INFO");
|
---|
| 41 |
|
---|
| 42 | std::string popMessages();
|
---|
| 43 |
|
---|
| 44 | private:
|
---|
| 45 |
|
---|
| 46 | };
|
---|
| 47 |
|
---|
| 48 | void setAsapSink(AsapLogSink& sink);
|
---|
| 49 |
|
---|
| 50 | } // namespace
|
---|
| 51 |
|
---|
| 52 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.