source: trunk/src/AsapLogSink.h @ 3106

Last change on this file since 3106 was 3106, checked in by Takeshi Nakazato, 8 years ago

New Development: No

JIRA Issue: No

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Check-in asap modifications from Jim regarding casacore namespace conversion.

File size: 1.1 KB
Line 
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
18namespace asap {
19/**
20  * This class provides the a casacore::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  */
29class AsapLogSink : public casacore::MemoryLogSink {
30public:
31  /**
32   * Default Constructor
33   **/
34  AsapLogSink() {;} ;
35
36  virtual ~AsapLogSink() {;};
37
38  virtual void postMessage(const std::string& msg,
39                           const std::string& priority="INFO",
40                           const std::string& origin="");
41
42  std::string popMessages();
43
44private:
45
46};
47
48void setAsapSink(AsapLogSink& sink);
49
50} // namespace
51
52#endif
Note: See TracBrowser for help on using the repository browser.