diff options
Diffstat (limited to 'live.h')
-rw-r--r-- | live.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -2,6 +2,7 @@ #define VDR_LIVE_LIVE_H #include <memory> +#include <string> #include <vdr/plugin.h> #include "thread.h" @@ -40,10 +41,14 @@ public: virtual Setup& GetLiveSetup(); virtual TimerManager& GetLiveTimerManager(); + static std::string const& GetConfigDirectory() { return m_configDirectory; } + private: static const char *VERSION; static const char *DESCRIPTION; + static std::string m_configDirectory; + std::auto_ptr< ServerThread > m_thread; }; |