summaryrefslogtreecommitdiff
path: root/tntconfig.h
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2015-02-10 23:55:25 +0100
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2015-02-10 23:55:25 +0100
commite6e5705567a73ac90b040578670d82998cc8788d (patch)
treee3139734c1d1090691c44082553e96cc5c267568 /tntconfig.h
parent948c21d5907c78adf00b382d4dc7010b1db5346b (diff)
downloadvdr-plugin-live-e6e5705567a73ac90b040578670d82998cc8788d.tar.gz
vdr-plugin-live-e6e5705567a73ac90b040578670d82998cc8788d.tar.bz2
Drop support for old tntnet versions: Removed support to read a tntnet config file.
Only code internal configuration is used now.
Diffstat (limited to 'tntconfig.h')
-rw-r--r--tntconfig.h26
1 files changed, 0 insertions, 26 deletions
diff --git a/tntconfig.h b/tntconfig.h
index 5e11175..118a6e5 100644
--- a/tntconfig.h
+++ b/tntconfig.h
@@ -8,7 +8,6 @@
namespace vdrlive {
-#if TNT_CONFIG_INTERNAL
class TntConfig
{
public:
@@ -20,31 +19,6 @@ namespace vdrlive {
TntConfig();
TntConfig( TntConfig const& );
};
-#else
- class TntConfig
- {
- public:
- static TntConfig const& Get();
-
- std::string const& GetConfigPath() const { return m_configPath; }
-#if APIVERSNUM > 10729
- std::string const& GetResourcePath() const { return m_resourcePath; }
-#endif
-
- private:
- std::string m_propertiesPath;
- std::string m_configPath;
-#if APIVERSNUM > 10729
- std::string m_resourcePath;
-#endif
-
- TntConfig();
- TntConfig( TntConfig const& );
-
- void WriteProperties();
- void WriteConfig();
- };
-#endif // TNT_CONFIG_INTERNAL
} // namespace vdrlive