/* * Copyright (C) 2008 Authors: * Ted Gould <ted@gould.cx> * * Released under GNU GPL, read the file 'COPYING' for more information */ #include "filter.h" /* Put your filter here */ #include "drop-shadow.h" #include "snow.h" namespace Inkscape { namespace Extension { namespace Internal { namespace Filter { void Filter::filters_all (void ) { // Here come the filters which are coded in C++ in order to present a parameters dialog DropShadow::init(); DropGlow::init(); Snow::init(); // Here come the rest of the filters that are read from SVG files in share/filters and // .config/Inkscape/filters /* This should always be last, don't put stuff below this * line. */ Filter::filters_all_files(); return; } }; /* namespace Filter */ }; /* namespace Internal */ }; /* namespace Extension */ }; /* namespace Inkscape */