1 #ifndef SEEN_SP_GRADIENT_REFERENCE_H
2 #define SEEN_SP_GRADIENT_REFERENCE_H
4 #include "uri-references.h"
5 class SPObject;
7 class SPGradientReference : public Inkscape::URIReference {
8 public:
9 SPGradientReference(SPObject *obj) : URIReference(obj) {}
11 SPGradient *getObject() const {
12 return (SPGradient *)URIReference::getObject();
13 }
15 protected:
16 virtual bool _acceptObject(SPObject *obj) const;
17 };
20 #endif /* !SEEN_SP_GRADIENT_REFERENCE_H */
22 /*
23 Local Variables:
24 mode:c++
25 c-file-style:"stroustrup"
26 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
27 indent-tabs-mode:nil
28 fill-column:99
29 End:
30 */
31 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :