Code

fix outline mode toggling with multiple views
[inkscape.git] / src / sp-filter-reference.h
1 #ifndef SEEN_SP_FILTER_REFERENCE_H
2 #define SEEN_SP_FILTER_REFERENCE_H
4 #include "uri-references.h"
5 #include "sp-filter-fns.h"
6 class SPObject;
8 class SPFilterReference : public Inkscape::URIReference {
9 public:
10     SPFilterReference(SPObject *obj) : URIReference(obj) {}
12     SPFilter *getObject() const {
13         return (SPFilter *)URIReference::getObject();
14     }
16 protected:
17     virtual bool _acceptObject(SPObject *obj) const;
18 };
21 #endif /* !SEEN_SP_FILTER_REFERENCE_H */
23 /*
24   Local Variables:
25   mode:c++
26   c-file-style:"stroustrup"
27   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
28   indent-tabs-mode:nil
29   fill-column:99
30   End:
31 */
32 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :