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/Searchers/Seekers/seekerbase.h')
-rw-r--r--Source/Ogda/Searchers/Seekers/seekerbase.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/Ogda/Searchers/Seekers/seekerbase.h b/Source/Ogda/Searchers/Seekers/seekerbase.h
index 92b2a069..71bfd169 100644
--- a/Source/Ogda/Searchers/Seekers/seekerbase.h
+++ b/Source/Ogda/Searchers/Seekers/seekerbase.h
@@ -20,7 +20,7 @@
// limitations under the License.
//
//-----------------------------------------------------------------------------
-#pragma once
+#pragma once
#include <vector>
#include <Ogda/item.h>
@@ -28,9 +28,8 @@
class JobHandler;
class Item;
-class SeekerBase
-{
-public:
- virtual std::vector<Item> Search(const Item& item ) = 0;
+class SeekerBase {
+ public:
+ virtual std::vector<Item> Search(const Item& item) = 0;
virtual const char* GetName() = 0;
};