inkboard-document.h revision 7333a6d3d0e1b6b738726a859e5875d5d97b27d9
/**
* Inkscape::Whiteboard::InkboardDocument - Inkboard document implementation
*
* Authors:
* David Yip <yipdw@rose-hulman.edu>
*
* Copyright (c) 2005 Authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glibmm.h>
#include "document.h"
#include "xml/document.h"
#include "xml/simple-node.h"
#include "xml/node-observer.h"
#include "jabber_whiteboard/defines.h"
#include "jabber_whiteboard/keynode.h"
#include "jabber_whiteboard/session-manager.h"
{
{
}
void startSessionNegotiation();
void terminateSession();
//
// XML::Session methods
//
bool inTransaction()
{
return _in_transaction;
}
void beginTransaction();
void rollback();
void commit();
//
// XML::NodeObserver methods
//
void notifyChildAdded(Inkscape::XML::Node &parent, Inkscape::XML::Node &child, Inkscape::XML::Node *prev);
void notifyChildRemoved(Inkscape::XML::Node &parent, Inkscape::XML::Node &child, Inkscape::XML::Node *prev);
/* Functions below are defined in inkboard-node.cpp */
/**
* Copy constructor.
*
* \param orig Instance to copy.
*/
{
}
{
}
void _initBindings();
bool _in_transaction;
};
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :