X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffileio.h;h=8aa7511f26366df767fa648a3db159733de428a6;hb=e78daf62eb771ee29a59035d16cf63c1e6ebe144;hp=d4fc9d585efc2fe776bc08470989a782a1852c6e;hpb=0fcc2d879e1e0ca17eeaceae2159f5143a06586f;p=architektonas diff --git a/src/fileio.h b/src/fileio.h index d4fc9d5..8aa7511 100644 --- a/src/fileio.h +++ b/src/fileio.h @@ -3,8 +3,6 @@ #include #include "structs.h" -//class Container; -//class Object; // NB: The methods in this class are all static, so there's no need to // instantiate an object of this type to use its functions. @@ -16,7 +14,13 @@ class FileIO static bool LoadAtnsFile(FILE *, Container *); private: - static bool GetObjectFromFile(FILE *, Object *, Object **, int *); + static bool LoadVersion1_0(FILE *, Container *); + static bool LoadVersion1_1(FILE *, Container *); +// static bool GetObjectFromFile(FILE *, Object *, Object **, int *); + static Object * GetObjectFromFile(FILE *, bool extended = false); + static bool WriteObjectToFile(FILE *, Object *); + + static int objectFileType; }; #endif // __FILEIO_H__