Code

working on session establishment
[inkscape.git] / src / jabber_whiteboard / new-inkboard-document.h
1 /**
2  * new-inkboard-document.h
3  * Functions to create new Inkboard documents, based off of sp_document_new /
4  * sp_file_new
5  *
6  * Authors:
7  * David Yip <yipdw@rose-hulman.edu>
8  *
9  * Copyright (c) 2006 Authors
10  *
11  * Released under GNU GPL, read the file 'COPYING' for more information
12  */
14 #ifndef __INKSCAPE_WHITEBOARD_NEW_DOCUMENT_H__
15 #define __INKSCAPE_WHITEBOARD_NEW_DOCUMENT_H__
17 #include <glibmm.h>
19 class SPDocument;
20 class SPDesktop;
22 namespace Inkscape {
24 namespace Whiteboard {
26 SPDocument* makeInkboardDocument(int code, gchar const* rootname, State::SessionType type, Glib::ustring const& to);
27 SPDesktop* makeInkboardDesktop(SPDocument* doc);
29 }
31 }
33 #endif