20 lines
238 B
C++
20 lines
238 B
C++
#ifndef CDUTILS_PARSER_H
|
|
#define CDUTILS_PARSER_H
|
|
|
|
|
|
class PIIODevice;
|
|
|
|
namespace CDUtils {
|
|
|
|
class CDSection;
|
|
|
|
namespace CDParser {
|
|
|
|
CDSection parse(PIIODevice * d, int cdsection_type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif // CDUTILS_PARSER_H
|