Code

Node tool: correctly save node skewing to undo history
[inkscape.git] / src / sp-filter-reference.cpp
1 #include "sp-filter-reference.h"
3 bool
4 SPFilterReference::_acceptObject(SPObject *obj) const
5 {
6     return SP_IS_FILTER(obj);
7     /* effic: Don't bother making this an inline function: _acceptObject is a virtual function,
8        typically called from a context where the runtime type is not known at compile time. */
9 }
12 /*
13   Local Variables:
14   mode:c++
15   c-file-style:"stroustrup"
16   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
17   indent-tabs-mode:nil
18   fill-column:99
19   End:
20 */
21 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :