~centralelyon2010/inkscape/imagelinks2

1 by mental
moving trunk for module inkscape
1
#ifndef SEEN_SP_GRADIENT_REFERENCE_H
2
#define SEEN_SP_GRADIENT_REFERENCE_H
3
4
#include "uri-references.h"
5
class SPObject;
6
7
class SPGradientReference : public Inkscape::URIReference {
8
public:
9
    SPGradientReference(SPObject *obj) : URIReference(obj) {}
10
11
    SPGradient *getObject() const {
12
        return (SPGradient *)URIReference::getObject();
13
    }
14
15
protected:
16
    virtual bool _acceptObject(SPObject *obj) const;
17
};
18
19
20
#endif /* !SEEN_SP_GRADIENT_REFERENCE_H */
21
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
*/
9020 by JazzyNico
Code refactoring and merging with trunk (revision 10599).
31
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :