MythTV  master
musicServiceHost.h
Go to the documentation of this file.
1 // Program Name: musicServiceHost.h
3 // Created : July 20, 2017
4 //
5 // Copyright (c) 2017 Paul Harrison <pharrison@mythtv.org>
6 //
7 // Licensed under the GPL v2 or later, see LICENSE for details
8 //
10 
11 #ifndef MUSICSERVICEHOST_H_
12 #define MUSICSERVICEHOST_H_
13 
15 #include "services/music.h"
16 
19 //
20 //
21 //
24 
26 {
27  public:
28 
29  explicit MusicServiceHost( const QString &sSharePath )
30  : ServiceHost( Music::staticMetaObject,
31  "Music",
32  "/Music",
33  sSharePath )
34  {
35  }
36 
37  ~MusicServiceHost() override = default;
38 };
39 
40 #endif
MusicServiceHost::~MusicServiceHost
~MusicServiceHost() override=default
Music
Definition: music.h:20
ServiceHost
Definition: servicehost.h:63
MusicServiceHost::MusicServiceHost
MusicServiceHost(const QString &sSharePath)
Definition: musicServiceHost.h:29
music.h
servicehost.h
MusicServiceHost
Definition: musicServiceHost.h:25