]> Shamusworld >> Repos - architektonas/blob - src/fileio.cpp
Added Architektonas drawing file loading/saving infrastructure.
[architektonas] / src / fileio.cpp
1 //
2 // fileio.cpp: Architektonas file save/load support
3 //
4 // Part of the Architektonas Project
5 // (C) 2013 Underground Software
6 // See the README and GPLv3 files for licensing and warranty information
7 //
8 // JLH = James Hammons <jlhamm@acm.org>
9 //
10 // Who  When        What
11 // ---  ----------  -------------------------------------------------------------
12 // JLH  02/20/2013  Created this file
13 //
14
15 #include "fileio.h"
16
17 //#include <stdio.h>
18 #include <stdlib.h>
19 #include "container.h"
20
21
22 /*static*/ bool FileIO::SaveAtnsFile(FILE * file, Container * object)
23 {
24 //      QString filename2 = QFileDialog::getSaveFileName(NULL, tr("Save Drawing"),
25 //              "", tr("Architektonas files (*.drawing)"));
26
27         return false;
28 }
29
30
31 /*static*/ bool FileIO::LoadAtnsFile(FILE * file, Container * object)
32 {
33 //      QString filename2 = QFileDialog::getOpenFileName(NULL, tr("Open Drawing"),
34 //              "", tr("Architektonas files (*.drawing)"));
35
36         return false;
37 }
38
39