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#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT)
22#error "Only <webkitdom/webkitdom.h> can be included directly."
23#endif
24
25#ifndef WebKitDOMFloat64Array_h
26#define WebKitDOMFloat64Array_h
27
28#include <glib-object.h>
29#include <webkitdom/WebKitDOMArrayBufferView.h>
30#include <webkitdom/webkitdomdefines.h>
31
32G_BEGIN_DECLS
33
34#define WEBKIT_DOM_TYPE_FLOAT64ARRAY            (webkit_dom_float64array_get_type())
35#define WEBKIT_DOM_FLOAT64ARRAY(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), WEBKIT_DOM_TYPE_FLOAT64ARRAY, WebKitDOMFloat64Array))
36#define WEBKIT_DOM_FLOAT64ARRAY_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass),  WEBKIT_DOM_TYPE_FLOAT64ARRAY, WebKitDOMFloat64ArrayClass)
37#define WEBKIT_DOM_IS_FLOAT64ARRAY(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), WEBKIT_DOM_TYPE_FLOAT64ARRAY))
38#define WEBKIT_DOM_IS_FLOAT64ARRAY_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass),  WEBKIT_DOM_TYPE_FLOAT64ARRAY))
39#define WEBKIT_DOM_FLOAT64ARRAY_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj),  WEBKIT_DOM_TYPE_FLOAT64ARRAY, WebKitDOMFloat64ArrayClass))
40
41struct _WebKitDOMFloat64Array {
42    WebKitDOMArrayBufferView parent_instance;
43};
44
45struct _WebKitDOMFloat64ArrayClass {
46    WebKitDOMArrayBufferViewClass parent_class;
47};
48
49WEBKIT_API GType
50webkit_dom_float64array_get_type (void);
51
52/**
53 * webkit_dom_float64array_foo:
54 * @self: A #WebKitDOMFloat64Array
55 * @array: A #WebKitDOMFloat32Array
56 *
57 * Returns: (transfer none):
58 *
59**/
60WEBKIT_API WebKitDOMInt32Array*
61webkit_dom_float64array_foo(WebKitDOMFloat64Array* self, WebKitDOMFloat32Array* array);
62
63G_END_DECLS
64
65#endif /* WebKitDOMFloat64Array_h */
66