1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef __lib_dvb_metaparser_h #define __lib_dvb_metaparser_h #include <string> #include <lib/dvb/idvb.h> class eDVBMetaParser { public: int parseFile(const std::string &filename); eServiceReferenceDVB m_ref; std::string m_name, m_description; }; #endif