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