1
0
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:
Dominik Schmidt 2014-03-12 19:21:15 +01:00
parent 6b0a8039a5
commit 1ae88f6e04
2 changed files with 2 additions and 6 deletions

@ -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