blob: 2ca94d6d97ebb1c3827d157fad336ecc4fd7b6bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __lib_dvb_metaparser_h
#define __lib_dvb_metaparser_h
#include <string>
#include <lib/dvb/idvb.h>
class eDVBMetaParser
{
public:
eDVBMetaParser();
int parseFile(const std::string &basename);
int parseMeta(const std::string &filename);
int parseRecordings(const std::string &filename);
int updateMeta(const std::string &basename);
int m_data_ok;
eServiceReferenceDVB m_ref;
std::string m_name, m_description;
int m_time_create, m_length;
long long m_filesize;
std::string m_tags;
};
#endif
|