X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffileio.h;h=a30ad48c6955e7423e8185c1fd9364a3dcb24f5b;hb=669a05b5a52bd759f0ea08772e0ed17222b015a0;hp=5994e27eba32482fc7e2b2286900e724a48efe2e;hpb=baf67656b97e3d61e9223e66ebe4f554e364cd4a;p=architektonas diff --git a/src/fileio.h b/src/fileio.h index 5994e27..a30ad48 100644 --- a/src/fileio.h +++ b/src/fileio.h @@ -4,6 +4,7 @@ #include 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. @@ -13,6 +14,9 @@ class FileIO public: static bool SaveAtnsFile(FILE *, Container *); static bool LoadAtnsFile(FILE *, Container *); + + private: + static bool GetObjectFromFile(FILE *, Object *, Object **, int *); }; #endif // __FILEIO_H__