mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-26 23:35:32 +02:00
Move rtaudio, alsa-playback and qxt into thirdparty/.
This commit is contained in:
23
thirdparty/qxt/qxtweb-standalone/example/myservice.h
vendored
Normal file
23
thirdparty/qxt/qxtweb-standalone/example/myservice.h
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
#ifndef MYSERVICE
|
||||
#define MYSERVICE
|
||||
|
||||
#include <QxtHttpServerConnector>
|
||||
#include <QxtHttpSessionManager>
|
||||
#include <QxtWebSlotService>
|
||||
#include <QxtWebPageEvent>
|
||||
|
||||
|
||||
class MyService : public QxtWebSlotService{
|
||||
Q_OBJECT;
|
||||
public:
|
||||
MyService(QxtAbstractWebSessionManager * sm, QObject * parent = 0 ): QxtWebSlotService(sm,parent){
|
||||
}
|
||||
public slots:
|
||||
void index(QxtWebRequestEvent* event)
|
||||
{
|
||||
postEvent(new QxtWebPageEvent(event->sessionID, event->requestID, "<h1>It Works!</h1>"));
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user