forward.h revision 569ef8f6dbacc8a8b0b933d02a806c2e091ce02b
#ifndef __FORWARD_H__
#define __FORWARD_H__
/*
* Forward declarations of most used objects
*
* Author:
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 2001-2002 Lauris Kaplinski
* Copyright (C) 2001 Ximian, Inc.
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <glib-object.h>
/* Generic containers */
struct Application;
struct ApplicationClass;
}
/* Editing window */
#define SP_TYPE_EVENT_CONTEXT (sp_event_context_get_type ())
#define SP_EVENT_CONTEXT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), SP_TYPE_EVENT_CONTEXT, SPEventContext))
/* Document tree */
#define SP_TYPE_DOCUMENT (sp_document_get_type ())
/* Objects */
#define SP_TYPE_OBJECT (sp_object_get_type ())
#define SP_TYPE_ITEM (sp_item_get_type ())
struct SPMarker;
struct SPMarkerClass;
/* Misc */
};
};
};
}
struct box_solution;
/* verbs */
typedef int sp_verb_t;
}
#endif /* !__FORWARD_H__ */
/*
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 :