mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
188dad0293
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6341 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
28 lines
494 B
C++
28 lines
494 B
C++
#ifndef DISPLAY_MANUAL_HPP__
|
|
#define DISPLAY_MANUAL_HPP__
|
|
|
|
#include <QObject>
|
|
|
|
#include "pimpl_h.hpp"
|
|
|
|
class QNetworkAccessManager;
|
|
class QDir;
|
|
class QUrl;
|
|
class QString;
|
|
|
|
class DisplayManual
|
|
: public QObject
|
|
{
|
|
public:
|
|
DisplayManual (QNetworkAccessManager *, QObject * = nullptr);
|
|
~DisplayManual ();
|
|
void display_html_url (QUrl const& url, QString const& name_we);
|
|
void display_html_file (QDir const& dir, QString const& name_we);
|
|
|
|
private:
|
|
class impl;
|
|
pimpl<impl> m_;
|
|
};
|
|
|
|
#endif
|