js8call/JS8_Main/TraceFile.h
Chris-AC9KH 356bdc0f50 Code cleanup - move loose source and header files in source tree to group folders
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
2026-01-02 16:46:38 -06:00

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