14 lines
222 B
C++
14 lines
222 B
C++
#ifndef EXTRACTOR_H_
|
|
#define EXTRACTOR_H_
|
|
|
|
#include <string>
|
|
|
|
#include <boost/filesystem.hpp>
|
|
|
|
/** \brief Class of 'extract' utility. */
|
|
struct Extractor
|
|
{
|
|
int Run(int argc, char *argv[]);
|
|
};
|
|
#endif /* EXTRACTOR_H_ */
|