mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-21 16:29:43 +01:00
Don't export non-library classes
This commit is contained in:
parent
6b0a8039a5
commit
1ae88f6e04
src/accounts/hatchet/sip
@ -18,8 +18,6 @@
|
||||
#ifndef WEBSOCKET__H
|
||||
#define WEBSOCKET__H
|
||||
|
||||
#include "DllMacro.h"
|
||||
|
||||
#include "hatchet_config.hpp"
|
||||
#include <websocketpp/client.hpp>
|
||||
|
||||
@ -37,7 +35,7 @@ class WebSocket;
|
||||
void onMessage( WebSocket* ws, websocketpp::connection_hdl, hatchet_client::message_ptr msg );
|
||||
void onClose( WebSocket* ws, websocketpp::connection_hdl );
|
||||
|
||||
class DLLEXPORT WebSocket : public QObject
|
||||
class WebSocket : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
@ -18,14 +18,12 @@
|
||||
#ifndef WEBSOCKET_THREAD_CONTROLLER_H
|
||||
#define WEBSOCKET_THREAD_CONTROLLER_H
|
||||
|
||||
#include "DllMacro.h"
|
||||
|
||||
#include <QPointer>
|
||||
#include <QThread>
|
||||
|
||||
class WebSocket;
|
||||
|
||||
class DLLEXPORT WebSocketThreadController : public QThread
|
||||
class WebSocketThreadController : public QThread
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user