OpenCPN Partial API docs
nmea_log.h
1 #ifndef _ABSTRACT_NMEA_LOG__
2 #define _ABSTRACT_NMEA_LOG__
3 
4 #include <wx/string.h>
5 
6 class NmeaLog {
7 public:
8 
10  virtual void Add(const wxString& s) = 0;
11 
13  virtual bool Active() const = 0;
14 };
15 
16 #endif // _ABSTRACT_NMEA_LOG__
virtual void Add(const wxString &s)=0
Add an formatted string to log output.
virtual bool Active() const =0
Return true if log is visible i.