aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/presentation.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-02-26 21:21:36 +0100
committerThomas White <taw@bitwiz.me.uk>2019-02-26 21:21:36 +0100
commit4904182915c1a02c8ac6fb26397cb12e0aab51b9 (patch)
treea84cf5506c2ddd7426d23008dd47379c2f8da5bf /libstorycode/presentation.h
parent237f336f9bb0d2d34784612d59cf1622a9edd952 (diff)
Skeleton of main program
Diffstat (limited to 'libstorycode/presentation.h')
-rw-r--r--libstorycode/presentation.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libstorycode/presentation.h b/libstorycode/presentation.h
index 80c6186..250d7a6 100644
--- a/libstorycode/presentation.h
+++ b/libstorycode/presentation.h
@@ -27,12 +27,16 @@
#include <config.h>
#endif
+#include <gio/gio.h>
+
typedef struct _presentation Presentation;
#include "stylesheet.h"
#include "narrative.h"
extern Presentation *presentation_new(void);
+extern Presentation *presentation_load(GFile *file);
+extern int presentation_save(Presentation *p, GFile *file);
extern void presentation_free(Presentation *p);
extern void presentation_add_stylesheet(Presentation *p, Stylesheet *ss);