diff options
Diffstat (limited to 'setupeepg.h')
-rw-r--r-- | setupeepg.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/setupeepg.h b/setupeepg.h index f5e342a..ffd9eb8 100644 --- a/setupeepg.h +++ b/setupeepg.h @@ -24,12 +24,25 @@ public: public: static cSetupEEPG* getInstance(); + char* getConfDir() const + { + return ConfDir; + } + + void setConfDir(char* confDir) + { + ConfDir = confDir; + } + private: cSetupEEPG (void); cSetupEEPG(cSetupEEPG const&); // copy constructor is private cSetupEEPG& operator=(cSetupEEPG const&); // assignment operator is private static cSetupEEPG* _setupEEPG; +private: + char *ConfDir; + }; #endif /* SETUPEEPG_H_ */ |