Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / display / nr-light-types.h
1 #ifndef __NR_LIGHT_TYPES_H__
2 #define __NR_LIGHT_TYPES_H__
4 namespace Inkscape {
5 namespace Filters {
7 enum LightType{
8     NO_LIGHT = 0,
9     DISTANT_LIGHT,
10     POINT_LIGHT,
11     SPOT_LIGHT
12 };
14 } /* namespace Filters */
15 } /* namespace Inkscape */
17 #endif // __NR_LIGHT_TYPES_H__
18 /*
19   Local Variables:
20   mode:c++
21   c-file-style:"stroustrup"
22   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
23   indent-tabs-mode:nil
24   fill-column:99
25   End:
26 */
27 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :