follow api changes
[enigma2.git] / lib / dvb / idvb.h
index 90457dc1f411fe3164782a516a3a037e52955c85..c7db9779288cbccec4141ad613768a70027572ba 100644 (file)
@@ -1,7 +1,6 @@
 #ifndef __dvb_idvb_h
 #define __dvb_idvb_h
 
-#include <config.h>
 #if HAVE_DVB_API_VERSION < 3
 #include <ost/frontend.h>
 #define FRONTENDPARAMETERS FrontendParameters
@@ -22,11 +21,12 @@ struct eBouquet
        std::string m_filename;  // without path.. just name
        typedef std::list<eServiceReference> list;
        list m_services;
-// the following four methods are implemented in db.cpp
+// the following five methods are implemented in db.cpp
        RESULT flushChanges();
        RESULT addService(const eServiceReference &);
        RESULT removeService(const eServiceReference &);
        RESULT moveService(const eServiceReference &, unsigned int);
+       RESULT setListName(const std::string &name);
 };
 
                /* these structures have by intention no operator int() defined.
@@ -185,6 +185,11 @@ struct eServiceReferenceDVB: public eServiceReference
                :eServiceReference(eServiceReference::idDVB, 0)
        {
        }
+
+       eServiceReferenceDVB(const std::string &string)
+               :eServiceReference(string)
+       {
+       }
 };