forward declare includes
This commit is contained in:
parent
682e18e9df
commit
36f1fbd6ea
@ -1,14 +1,14 @@
|
|||||||
INCLUDEPATH += $${PWD}
|
INCLUDEPATH += $${PWD}
|
||||||
|
|
||||||
HEADERS += \
|
HEADERS += \
|
||||||
$${PWD}/jsonrpcclient2.h \
|
$${PWD}/proxyjsonrpcclient.h \
|
||||||
$${PWD}/jsonreply.h \
|
$${PWD}/jsonreply.h \
|
||||||
$${PWD}/remoteproxyconnection.h \
|
$${PWD}/remoteproxyconnection.h \
|
||||||
$${PWD}/proxyconnection.h \
|
$${PWD}/proxyconnection.h \
|
||||||
$${PWD}/websocketconnection.h
|
$${PWD}/websocketconnection.h
|
||||||
|
|
||||||
SOURCES += \
|
SOURCES += \
|
||||||
$${PWD}/jsonrpcclient2.cpp \
|
$${PWD}/proxyjsonrpcclient.cpp \
|
||||||
$${PWD}/jsonreply.cpp \
|
$${PWD}/jsonreply.cpp \
|
||||||
$${PWD}/remoteproxyconnection.cpp \
|
$${PWD}/remoteproxyconnection.cpp \
|
||||||
$${PWD}/proxyconnection.cpp \
|
$${PWD}/proxyconnection.cpp \
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
#include "jsonrpcclient2.h"
|
#include "proxyjsonrpcclient.h"
|
||||||
#include "proxyconnection.h"
|
#include "proxyconnection.h"
|
||||||
|
|
||||||
#include <QJsonDocument>
|
#include <QJsonDocument>
|
||||||
@ -1,5 +1,7 @@
|
|||||||
#include "remoteproxyconnection.h"
|
#include "remoteproxyconnection.h"
|
||||||
#include "websocketconnection.h"
|
#include "websocketconnection.h"
|
||||||
|
#include "proxyjsonrpcclient.h"
|
||||||
|
#include "proxyconnection.h"
|
||||||
|
|
||||||
Q_LOGGING_CATEGORY(dcRemoteProxyClientConnection, "RemoteProxyClientConnection")
|
Q_LOGGING_CATEGORY(dcRemoteProxyClientConnection, "RemoteProxyClientConnection")
|
||||||
Q_LOGGING_CATEGORY(dcRemoteProxyClientConnectionTraffic, "RemoteProxyClientConnectionTraffic")
|
Q_LOGGING_CATEGORY(dcRemoteProxyClientConnectionTraffic, "RemoteProxyClientConnectionTraffic")
|
||||||
|
|||||||
@ -8,14 +8,14 @@
|
|||||||
#include <QHostAddress>
|
#include <QHostAddress>
|
||||||
#include <QLoggingCategory>
|
#include <QLoggingCategory>
|
||||||
|
|
||||||
#include "jsonrpcclient2.h"
|
|
||||||
#include "proxyconnection.h"
|
|
||||||
|
|
||||||
Q_DECLARE_LOGGING_CATEGORY(dcRemoteProxyClientConnection)
|
Q_DECLARE_LOGGING_CATEGORY(dcRemoteProxyClientConnection)
|
||||||
Q_DECLARE_LOGGING_CATEGORY(dcRemoteProxyClientConnectionTraffic)
|
Q_DECLARE_LOGGING_CATEGORY(dcRemoteProxyClientConnectionTraffic)
|
||||||
|
|
||||||
namespace remoteproxyclient {
|
namespace remoteproxyclient {
|
||||||
|
|
||||||
|
class JsonRpcClient;
|
||||||
|
class ProxyConnection;
|
||||||
|
|
||||||
class RemoteProxyConnection : public QObject
|
class RemoteProxyConnection : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|||||||
Reference in New Issue
Block a user