Code

Indent support for XSLT extensions output.
[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) {}
11     SPFilterReference(SPDocument *doc) : URIReference(doc) {}
13     SPFilter *getObject() const {
14         return (SPFilter *)URIReference::getObject();
15     }
17 protected:
18     virtual bool _acceptObject(SPObject *obj) const;
19 };
22 #endif /* !SEEN_SP_FILTER_REFERENCE_H */
24 /*
25   Local Variables:
26   mode:c++
27   c-file-style:"stroustrup"
28   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
29   indent-tabs-mode:nil
30   fill-column:99
31   End:
32 */
33 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :