1 #include "sp-gradient-reference.h"
2 #include "sp-gradient-fns.h"
4 bool
5 SPGradientReference::_acceptObject(SPObject *obj) const
6 {
7 return SP_IS_GRADIENT(obj);
8 /* effic: Don't bother making this an inline function: _acceptObject is a virtual function,
9 typically called from a context where the runtime type is not known at compile time. */
10 }
13 /*
14 Local Variables:
15 mode:c++
16 c-file-style:"stroustrup"
17 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
18 indent-tabs-mode:nil
19 fill-column:99
20 End:
21 */
22 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :