fixed MACAddress example
[senf.git] / Socket / Protocols / DVB / DVBConfigParser.hh
index da2a91a..4b03ea1 100644 (file)
@@ -55,20 +55,21 @@ namespace senf {
     public:
         DVBConfigParser(fe_type_t type_, const std::string & configFilePath = "");
         ~DVBConfigParser();
-       
+
         std::string getConfigLine(std::string channel);
-           
+    
         dvb_frontend_parameters getFrontendParam(std::string configLine);
-       
+
     private:
         fe_type_t type;
+        std::string configFilePath;
         std::ifstream configFile;
         void initConfigFile(std::string _configFilePath);
 
         dvb_frontend_parameters getFrontendParamDVB_T( const tokenizer & tokens);
         dvb_frontend_parameters getFrontendParamDVB_C( const tokenizer & tokens);
         dvb_frontend_parameters getFrontendParamDVB_S( const tokenizer & tokens);
-       
+
     };
 }