~ubuntu-branches/ubuntu/wily/vdr-plugin-live/wily-proposed

« back to all changes in this revision

Viewing changes to tntconfig.h

  • Committer: Package Import Robot
  • Author(s): Tobias Grimm
  • Date: 2013-03-31 14:00:10 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20130331140010-vkqbir6cp2o89nih
Tags: 0.2.0+git20130305-6
Build-depend on vdr-dev (>= 2.0.0)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#include <string>
5
5
#include <tnt/tntnet.h>
 
6
#include <vdr/config.h>
6
7
#include "tntfeatures.h"
7
8
 
8
9
namespace vdrlive {
26
27
                        static TntConfig const& Get();
27
28
 
28
29
                        std::string const& GetConfigPath() const { return m_configPath; }
 
30
#if APIVERSNUM > 10729
 
31
                        std::string const& GetResourcePath() const { return m_resourcePath; }
 
32
#endif
29
33
 
30
34
                private:
31
35
                        std::string m_propertiesPath;
32
36
                        std::string m_configPath;
 
37
#if APIVERSNUM > 10729
 
38
                        std::string m_resourcePath;
 
39
#endif
33
40
 
34
41
                        TntConfig();
35
42
                        TntConfig( TntConfig const& );