mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 15:47:10 -04:00
15 lines
216 B
C++
15 lines
216 B
C++
#ifndef WSJTX_LOGGING_HPP__
|
|
#define WSJTX_LOGGING_HPP__
|
|
|
|
//
|
|
// Class WSJTXLogging - wraps application specific logging
|
|
//
|
|
class WSJTXLogging final
|
|
{
|
|
public:
|
|
explicit WSJTXLogging ();
|
|
~WSJTXLogging ();
|
|
};
|
|
|
|
#endif
|