WSJT-X/DisplayManual.hpp
Bill Somerville 0ba0977aa2 User Guide localization
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@6341 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
2016-01-02 22:30:12 +00:00

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