webengine/osswebengine/DerivedSources/WebCore/JSSVGSetElement.cpp
changeset 0 dd21522fd290
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2     This file is part of the WebKit open source project.
       
     3     This file has been generated by generate-bindings.pl. DO NOT MODIFY!
       
     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 */
       
    20 
       
    21 #include "config.h"
       
    22 
       
    23 
       
    24 #if ENABLE(SVG)
       
    25 
       
    26 #include "Document.h"
       
    27 #include "Frame.h"
       
    28 #include "SVGDocumentExtensions.h"
       
    29 #include "SVGElement.h"
       
    30 #include "SVGAnimatedTemplate.h"
       
    31 #include "JSSVGSetElement.h"
       
    32 
       
    33 #include <wtf/GetPtr.h>
       
    34 
       
    35 #include "SVGSetElement.h"
       
    36 
       
    37 using namespace KJS;
       
    38 
       
    39 namespace WebCore {
       
    40 
       
    41 /* Hash table for prototype */
       
    42 
       
    43 static const HashEntry JSSVGSetElementPrototypeTableEntries[] =
       
    44 {
       
    45     { 0, 0, 0, 0, 0 }
       
    46 };
       
    47 
       
    48 static const HashTable JSSVGSetElementPrototypeTable = 
       
    49 {
       
    50     2, 1, JSSVGSetElementPrototypeTableEntries, 1
       
    51 };
       
    52 
       
    53 const ClassInfo JSSVGSetElementPrototype::info = { "SVGSetElementPrototype", 0, &JSSVGSetElementPrototypeTable, 0 };
       
    54 
       
    55 JSObject* JSSVGSetElementPrototype::self(ExecState* exec)
       
    56 {
       
    57     return KJS::cacheGlobalObject<JSSVGSetElementPrototype>(exec, "[[JSSVGSetElement.prototype]]");
       
    58 }
       
    59 
       
    60 const ClassInfo JSSVGSetElement::info = { "SVGSetElement", &JSSVGAnimationElement::info, 0, 0 };
       
    61 
       
    62 JSSVGSetElement::JSSVGSetElement(ExecState* exec, SVGSetElement* impl)
       
    63     : JSSVGAnimationElement(exec, impl)
       
    64 {
       
    65     setPrototype(JSSVGSetElementPrototype::self(exec));
       
    66 }
       
    67 
       
    68 
       
    69 }
       
    70 
       
    71 #endif // ENABLE(SVG)