js8call/HelpTextWindow.hpp

17 lines
301 B
C++
Raw Normal View History

2018-02-08 21:28:33 -05:00
#ifndef HELP_TEXT_WINDOW_HPP__
#define HELP_TEXT_WINDOW_HPP__
#include <QLabel>
#include <QFont>
class QString;
class HelpTextWindow final
: public QLabel
{
public:
HelpTextWindow (QString const& title, QString const& file_name, QFont const& = QFont {}, QWidget * parent = nullptr);
};
#endif