mirror of
				https://github.com/saitohirga/WSJT-X.git
				synced 2025-11-04 05:50:31 -05:00 
			
		
		
		
	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
 |