00001 00002 // Program Name: dvrServiceHost.h 00003 // Created : Mar. 7, 2011 00004 // 00005 // Purpose - DVR Service Host 00006 // 00007 // Copyright (c) 2011 David Blain <dblain@mythtv.org> 00008 // 00009 // This library is free software; you can redistribute it and/or 00010 // modify it under the terms of the GNU Lesser General Public 00011 // License as published by the Free Software Foundation; either 00012 // version 2.1 of the License, or at your option any later version of the LGPL. 00013 // 00014 // This library is distributed in the hope that it will be useful, 00015 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 // Lesser General Public License for more details. 00018 // 00019 // You should have received a copy of the GNU Lesser General Public 00020 // License along with this library. If not, see <http://www.gnu.org/licenses/>. 00021 // 00023 00024 #ifndef DVRSERVICEHOST_H_ 00025 #define DVRSERVICEHOST_H_ 00026 00027 #include "servicehost.h" 00028 #include "services/dvr.h" 00029 00032 // 00033 // 00034 // 00037 00038 class DvrServiceHost : public ServiceHost 00039 { 00040 public: 00041 00042 DvrServiceHost( const QString &sSharePath ) 00043 : ServiceHost( Dvr::staticMetaObject, 00044 "Dvr", 00045 "/Dvr", 00046 sSharePath ) 00047 { 00048 } 00049 00050 virtual ~DvrServiceHost() 00051 { 00052 } 00053 }; 00054 00055 #endif
1.6.3