Initial import from SVN

This commit is contained in:
emeric
2014-03-09 10:58:52 +01:00
commit b6abce0c2f
440 changed files with 30862 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
#ifndef EXTRACTOR_HPP
#define EXTRACTOR_HPP
#include <extractor.h>
#include "MetaData.hpp"
namespace MetaData
{
// Implements GNU libextractor library
class Extractor : public Parser
{
public:
Extractor();
~Extractor();
void parse(const boost::filesystem::path& p, Items& items);
bool parseCover(const boost::filesystem::path& p, GenericData& data);
private:
struct EXTRACTOR_PluginList *_plugins;
};
} // namespace MetaData
#endif