TITANIC: Add override keywords

This commit is contained in:
Bastien Bouclet
2020-02-09 12:43:16 +01:00
parent b700f1fcd1
commit 4d70872545
449 changed files with 1387 additions and 1387 deletions
+2 -2
View File
@@ -36,12 +36,12 @@ public:
/**
* Save the data for the class to file
*/
virtual void save(SimpleFile *file, int indent);
void save(SimpleFile *file, int indent) override;
/**
* Load the data for the class from file
*/
virtual void load(SimpleFile *file);
void load(SimpleFile *file) override;
};
} // End of namespace Titanic