js8call/JS8_Main/HelpTextWindow.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

15 lines
320 B
C++

#ifndef HELP_TEXT_WINDOW_HPP__
#define HELP_TEXT_WINDOW_HPP__
#include <QFont>
#include <QLabel>
class QString;
class HelpTextWindow final : public QLabel {
public:
HelpTextWindow(QString const &title, QString const &file_name,
QFont const & = QFont{}, QWidget *parent = nullptr);
};
#endif