]> Shamusworld >> Repos - architektonas/blob - src/fileio.h
5994e27eba32482fc7e2b2286900e724a48efe2e
[architektonas] / src / fileio.h
1 #ifndef __FILEIO_H__
2 #define __FILEIO_H__
3
4 #include <stdio.h>
5
6 class Container;
7
8 // NB: The methods in this class are all static, so there's no need to
9 //     instantiate an object of this type to use its functions.
10
11 class FileIO
12 {
13         public:
14                 static bool SaveAtnsFile(FILE *, Container *);
15                 static bool LoadAtnsFile(FILE *, Container *);
16 };
17
18 #endif  // __FILEIO_H__
19