blob: 26fcc23d3be353e59913524ca5c596e2ded9dfeb [file] [log] [blame]
darinb9481ed2006-03-20 02:57:59 +00001/*
zimmermann@webkit.org711245f2010-08-03 19:39:01 +00002 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
darinb9481ed2006-03-20 02:57:59 +000020
eseidel8eddecf2007-01-16 00:49:43 +000021#ifndef SVGFEFuncAElement_h
22#define SVGFEFuncAElement_h
darinb9481ed2006-03-20 02:57:59 +000023
krit@webkit.orgbfb80bf2009-05-28 22:10:29 +000024#if ENABLE(SVG) && ENABLE(FILTERS)
darinb9481ed2006-03-20 02:57:59 +000025#include "SVGComponentTransferFunctionElement.h"
26
ddkilzer@apple.com9c4dacc2009-07-11 05:36:29 +000027namespace WebCore {
darin@apple.com3cbd5cb2010-08-30 06:51:56 +000028
krit@webkit.org6a0cb5b2010-12-22 20:15:51 +000029class SVGFEFuncAElement : public SVGComponentTransferFunctionElement {
30public:
31 static PassRefPtr<SVGFEFuncAElement> create(const QualifiedName&, Document*);
darin@apple.com3cbd5cb2010-08-30 06:51:56 +000032
krit@webkit.org6a0cb5b2010-12-22 20:15:51 +000033private:
34 SVGFEFuncAElement(const QualifiedName&, Document*);
35};
weinigab5f09e2006-07-29 23:15:25 +000036
37} // namespace WebCore
darinb9481ed2006-03-20 02:57:59 +000038
mjsd2948ef2007-02-26 19:29:04 +000039#endif // ENABLE(SVG)
darinb9481ed2006-03-20 02:57:59 +000040#endif