From e2aca904ec8c0e0f23124b00b4b1eb525105f95e Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 18 Feb 2016 22:05:51 -0500 Subject: TITANIC: Implement saving methods for List and ListItem --- engines/titanic/objects/saveable_object.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/titanic/objects/saveable_object.h') diff --git a/engines/titanic/objects/saveable_object.h b/engines/titanic/objects/saveable_object.h index e99d8c5525..4e7d949191 100644 --- a/engines/titanic/objects/saveable_object.h +++ b/engines/titanic/objects/saveable_object.h @@ -58,7 +58,7 @@ public: /** * Save the data for the class to file */ - virtual void save(SimpleFile *file, int indent); + virtual void save(SimpleFile *file, int indent) const; /** * Load the data for the class from file @@ -69,13 +69,13 @@ public: * Write out a header definition for the class to file * prior to saving the actual data for the class */ - virtual void saveHeader(SimpleFile *file, int indent); + virtual void saveHeader(SimpleFile *file, int indent) const; /** * Writes out a footer for the class after it's data has * been written to file */ - virtual void saveFooter(SimpleFile *file, int indent); + virtual void saveFooter(SimpleFile *file, int indent) const; }; } // End of namespace Titanic -- cgit v1.2.3