Removed pragma, reorganized includes.

This commit is contained in:
dmbreaker 2014-07-02 17:07:27 +04:00
parent 4bc847ac42
commit d2a70d1504
2 changed files with 7 additions and 10 deletions

View File

@ -42,15 +42,14 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "../Util/TimingUtil.h"
#include "../typedefs.h"
#include <boost/program_options.hpp>
#include <cstdlib>
#include <thread>
#include <chrono>
#include <iostream>
#include <fstream>
#include <string>
#include <unordered_map>
#include <tbb/task_scheduler_init.h>
Extractor::Extractor(const char* git_desc) :

View File

@ -1,14 +1,11 @@
#pragma once
#include <vector>
#include <boost/filesystem.hpp>
#include <boost/program_options.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/noncopyable.hpp>
#ifndef EXTRACTOR_H_
#define EXTRACTOR_H_
#include "../Util/FingerPrint.h"
#include <boost/filesystem.hpp>
class ExtractorCallbacks;
/** \brief Class of 'extract' utility. */
@ -42,3 +39,4 @@ public:
int Execute(int argc, char *argv[]);
};
#endif /* EXTRACTOR_H_ */