mirror of
https://github.com/JS8Call-improved/JS8Call-improved
synced 2026-08-13 17:47:36 -04:00
Rename all header files with .h extension Fix function declaration in HamlibTransceiver.h that overrode member function but was not marked override Remove unused variable in Modulator.cpp Remove unused files from source tree Remove duplicate LazyFillComboBox files Reformat codebase to LLVM C++ standard
22 lines
395 B
C++
22 lines
395 B
C++
#ifndef TRACE_FILE_HPP_
|
|
#define TRACE_FILE_HPP_
|
|
|
|
#include "JS8_Include/pimpl_h.h"
|
|
|
|
class QString;
|
|
|
|
class TraceFile final {
|
|
public:
|
|
explicit TraceFile(QString const &TraceFile_file_path);
|
|
~TraceFile();
|
|
|
|
// copying not allowed
|
|
TraceFile(TraceFile const &) = delete;
|
|
TraceFile &operator=(TraceFile const &) = delete;
|
|
|
|
private:
|
|
class impl;
|
|
pimpl<impl> m_;
|
|
};
|
|
|
|
#endif
|