darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 1 | /* |
zimmermann@webkit.org | 711245f | 2010-08-03 19:39:01 +0000 | [diff] [blame] | 2 | * 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 | */ |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 20 | |
eseidel | 8eddecf | 2007-01-16 00:49:43 +0000 | [diff] [blame] | 21 | #ifndef SVGFEFuncAElement_h |
| 22 | #define SVGFEFuncAElement_h |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 23 | |
krit@webkit.org | bfb80bf | 2009-05-28 22:10:29 +0000 | [diff] [blame] | 24 | #if ENABLE(SVG) && ENABLE(FILTERS) |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 25 | #include "SVGComponentTransferFunctionElement.h" |
| 26 | |
ddkilzer@apple.com | 9c4dacc | 2009-07-11 05:36:29 +0000 | [diff] [blame] | 27 | namespace WebCore { |
darin@apple.com | 3cbd5cb | 2010-08-30 06:51:56 +0000 | [diff] [blame] | 28 | |
krit@webkit.org | 6a0cb5b | 2010-12-22 20:15:51 +0000 | [diff] [blame] | 29 | class SVGFEFuncAElement : public SVGComponentTransferFunctionElement { |
| 30 | public: |
| 31 | static PassRefPtr<SVGFEFuncAElement> create(const QualifiedName&, Document*); |
darin@apple.com | 3cbd5cb | 2010-08-30 06:51:56 +0000 | [diff] [blame] | 32 | |
krit@webkit.org | 6a0cb5b | 2010-12-22 20:15:51 +0000 | [diff] [blame] | 33 | private: |
| 34 | SVGFEFuncAElement(const QualifiedName&, Document*); |
| 35 | }; |
weinig | ab5f09e | 2006-07-29 23:15:25 +0000 | [diff] [blame] | 36 | |
| 37 | } // namespace WebCore |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 38 | |
mjs | d2948ef | 2007-02-26 19:29:04 +0000 | [diff] [blame] | 39 | #endif // ENABLE(SVG) |
darin | b9481ed | 2006-03-20 02:57:59 +0000 | [diff] [blame] | 40 | #endif |