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/Builders/copyaction.h')
-rw-r--r--Source/Ogda/Builders/copyaction.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Ogda/Builders/copyaction.h b/Source/Ogda/Builders/copyaction.h
index 8e585786..ee0e028e 100644
--- a/Source/Ogda/Builders/copyaction.h
+++ b/Source/Ogda/Builders/copyaction.h
@@ -28,10 +28,10 @@ class Item;
class JobHandler;
class CopyAction : public ActionBase {
- public:
- ManifestResult Run(const JobHandler& jh, const Item& y) override;
- inline const char* GetName() const override { return "copy"; }
- inline const char* GetVersion() const override {return "2";}
- inline bool RunEvenOnIdenticalSource() const override { return false; }
- inline bool StoreResultInDatabase() const override { return false; }
+ public:
+ ManifestResult Run(const JobHandler& jh, const Item& y) override;
+ inline const char* GetName() const override { return "copy"; }
+ inline const char* GetVersion() const override { return "2"; }
+ inline bool RunEvenOnIdenticalSource() const override { return false; }
+ inline bool StoreResultInDatabase() const override { return false; }
};