MythTV  master
controlrequesthandler.h
Go to the documentation of this file.
1 #ifndef CONTROLREQUESTHANDLER_H
2 #define CONTROLREQUESTHANDLER_H
3 
4 // Qt
5 #include <QString>
6 #include <QStringList>
7 
8 // MythTV
12 
14 {
15  public:
16  bool HandleQuery(SocketHandler *socket, QStringList &commands,
17  QStringList &slist)override; // SocketRequestHandler
18 
19  protected:
20  bool AnnounceSocket(void) override; // OutboundRequestHandler
21 };
22 
23 #endif // CONTROLREQUESTHANDLER_H
outboundhandler.h
ControlRequestHandler::HandleQuery
bool HandleQuery(SocketHandler *socket, QStringList &commands, QStringList &slist) override
Dispatch query messages received from a client.
Definition: controlrequesthandler.cpp:38
ControlRequestHandler::AnnounceSocket
bool AnnounceSocket(void) override
Definition: controlrequesthandler.cpp:14
OutboundRequestHandler
Definition: outboundhandler.h:16
sockethandler.h
ControlRequestHandler
Definition: controlrequesthandler.h:13
SocketHandler
Definition: sockethandler.h:16
mythsocket.h