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/databasemanifestresult.h')
-rw-r--r--Source/Ogda/databasemanifestresult.h17
1 files changed, 8 insertions, 9 deletions
diff --git a/Source/Ogda/databasemanifestresult.h b/Source/Ogda/databasemanifestresult.h
index 51c1cdee..bde7a889 100644
--- a/Source/Ogda/databasemanifestresult.h
+++ b/Source/Ogda/databasemanifestresult.h
@@ -29,13 +29,12 @@ class ActionBase;
class CreatorBase;
class JobHandler;
-class DatabaseManifestResult
-{
-private:
+class DatabaseManifestResult {
+ private:
std::string current_dest_hash;
-public:
- DatabaseManifestResult( const Item& item, const std::string& dest_hash, const std::string& dest, const std::string& name, const std::string& version, const std::string& type );
+ public:
+ DatabaseManifestResult(const Item& item, const std::string& dest_hash, const std::string& dest, const std::string& name, const std::string& version, const std::string& type);
void CalculateHash(const char* base_path);
const std::string& GetCurrentDestHash(const std::string& base_path);
@@ -43,11 +42,11 @@ public:
std::string dest;
std::string dest_hash;
- std::string name; //Either creator or action
- std::string version; //Either creator or action
+ std::string name; // Either creator or action
+ std::string version; // Either creator or action
std::string type;
- //Only in built data does this come in as relevant.
- //And even then, we don't have support for more than one source at this time.
+ // Only in built data does this come in as relevant.
+ // And even then, we don't have support for more than one source at this time.
Item item;
};