MythTV  master
dvrServiceHost.h
Go to the documentation of this file.
1 // Program Name: dvrServiceHost.h
3 // Created : Mar. 7, 2011
4 //
5 // Purpose - DVR Service Host
6 //
7 // Copyright (c) 2011 David Blain <dblain@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 DVRSERVICEHOST_H_
29 #define DVRSERVICEHOST_H_
30 
32 #include "services/dvr.h"
33 
36 //
37 //
38 //
41 
43 {
44  public:
45 
46  explicit DvrServiceHost( const QString &sSharePath )
47  : ServiceHost( Dvr::staticMetaObject,
48  "Dvr",
49  "/Dvr",
50  sSharePath )
51  {
52  }
53 
54  ~DvrServiceHost() override = default;
55 };
56 
57 #endif
Dvr
Definition: dvr.h:36
DvrServiceHost::~DvrServiceHost
~DvrServiceHost() override=default
ServiceHost
Definition: servicehost.h:63
DvrServiceHost::DvrServiceHost
DvrServiceHost(const QString &sSharePath)
Definition: dvrServiceHost.h:46
dvr.h
servicehost.h
DvrServiceHost
Definition: dvrServiceHost.h:42