mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-06 22:26:32 +02:00
Don't export non-library classes
This commit is contained in:
@@ -18,8 +18,6 @@
|
|||||||
#ifndef WEBSOCKET__H
|
#ifndef WEBSOCKET__H
|
||||||
#define WEBSOCKET__H
|
#define WEBSOCKET__H
|
||||||
|
|
||||||
#include "DllMacro.h"
|
|
||||||
|
|
||||||
#include "hatchet_config.hpp"
|
#include "hatchet_config.hpp"
|
||||||
#include <websocketpp/client.hpp>
|
#include <websocketpp/client.hpp>
|
||||||
|
|
||||||
@@ -37,7 +35,7 @@ class WebSocket;
|
|||||||
void onMessage( WebSocket* ws, websocketpp::connection_hdl, hatchet_client::message_ptr msg );
|
void onMessage( WebSocket* ws, websocketpp::connection_hdl, hatchet_client::message_ptr msg );
|
||||||
void onClose( WebSocket* ws, websocketpp::connection_hdl );
|
void onClose( WebSocket* ws, websocketpp::connection_hdl );
|
||||||
|
|
||||||
class DLLEXPORT WebSocket : public QObject
|
class WebSocket : public QObject
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
|
@@ -18,14 +18,12 @@
|
|||||||
#ifndef WEBSOCKET_THREAD_CONTROLLER_H
|
#ifndef WEBSOCKET_THREAD_CONTROLLER_H
|
||||||
#define WEBSOCKET_THREAD_CONTROLLER_H
|
#define WEBSOCKET_THREAD_CONTROLLER_H
|
||||||
|
|
||||||
#include "DllMacro.h"
|
|
||||||
|
|
||||||
#include <QPointer>
|
#include <QPointer>
|
||||||
#include <QThread>
|
#include <QThread>
|
||||||
|
|
||||||
class WebSocket;
|
class WebSocket;
|
||||||
|
|
||||||
class DLLEXPORT WebSocketThreadController : public QThread
|
class WebSocketThreadController : public QThread
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user