MythTV  master
channelServiceHost.h
Go to the documentation of this file.
1 // Program Name: channelServiceHost.h
3 // Created : Apr. 8, 2011
4 //
5 // Purpose - Channel Service Host
6 //
7 // Copyright (c) 2011 Robert McNamara <rmcnamara@mythtv.org>
8 //
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 2 of the License, or
12 // (at your option) any later version.
13 //
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
18 //
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 //
23 // You should have received a copy of the GNU General Public License
24 // along with this program. If not, see <http://www.gnu.org/licenses/>.
25 //
27 
28 #ifndef CHANNELSERVICEHOST_H_
29 #define CHANNELSERVICEHOST_H_
30 
32 #include "services/channel.h"
33 
36 //
37 //
38 //
41 
43 {
44  public:
45 
46  explicit ChannelServiceHost( const QString &sSharePath )
47  : ServiceHost( Channel::staticMetaObject,
48  "Channel",
49  "/Channel",
50  sSharePath )
51  {
52  }
53 
54  ~ChannelServiceHost() override = default;
55 };
56 
57 #endif
Channel
Definition: channel.h:36
channel.h
ServiceHost
Definition: servicehost.h:63
ChannelServiceHost::ChannelServiceHost
ChannelServiceHost(const QString &sSharePath)
Definition: channelServiceHost.h:46
servicehost.h
ChannelServiceHost::~ChannelServiceHost
~ChannelServiceHost() override=default
ChannelServiceHost
Definition: channelServiceHost.h:42