Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Ogda/jobhandler.h')
-rw-r--r--Source/Ogda/jobhandler.h15
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/Ogda/jobhandler.h b/Source/Ogda/jobhandler.h
index 1fef0822..f7be55a7 100644
--- a/Source/Ogda/jobhandler.h
+++ b/Source/Ogda/jobhandler.h
@@ -26,16 +26,14 @@
#include <set>
#include <vector>
-
#include "item.h"
#include <Ogda/Builders/builder.h>
#include <Ogda/Searchers/searcher.h>
#include <Ogda/Generators/generator.h>
-class JobHandler
-{
- std::map<std::string,int> typeSearcherCount;
- std::map<std::string,int> typeBuilderCount;
+class JobHandler {
+ std::map<std::string, int> typeSearcherCount;
+ std::map<std::string, int> typeBuilderCount;
std::vector<Item> items;
std::vector<Item> searchedItems;
@@ -47,8 +45,9 @@ class JobHandler
int threads;
- void RunRecursiveSearchOn( const Item& item );
-public:
+ void RunRecursiveSearchOn(const Item& item);
+
+ public:
std::vector<std::string> input_folders;
std::string output_folder, manifest_dest, manifest_source, databasedir;
bool perform_removes;
@@ -61,5 +60,5 @@ public:
std::vector<Item>::const_iterator ItemsBegin() const;
std::vector<Item>::const_iterator ItemsEnd() const;
- bool HasItemWithPath( const std::string& path );
+ bool HasItemWithPath(const std::string& path);
};