guideline.h revision c88c5ccca9c4bd0d5ef52d6d09598ae9b54231c0
#ifndef __SP_GUIDELINE_H__
#define __SP_GUIDELINE_H__
/*
* The visual representation of SPGuide.
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Johan Engelen
*
* Copyright (C) 2000-2002 Lauris Kaplinski
* Copyright (C) 2007 Johan Engelen
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-canvas.h"
#define SP_TYPE_GUIDELINE (sp_guideline_get_type())
struct SPGuideLine {
int position;
unsigned int sensitive : 1;
};
struct SPGuideLineClass {
};
#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 :