Merge "Fix build break by removing TIZEN_RECORDING_SURFACE_SET" into tizen_2.1
[framework/web/webkit-efl.git] / Source / WTF / wtf / Forward.h
1 /*
2  *  Copyright (C) 2006, 2009, 2011 Apple Inc. All rights reserved.
3  *
4  *  This library is free software; you can redistribute it and/or
5  *  modify it under the terms of the GNU Library General Public
6  *  License as published by the Free Software Foundation; either
7  *  version 2 of the License, or (at your option) any later version.
8  *
9  *  This library is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  *  Library General Public License for more details.
13  *
14  *  You should have received a copy of the GNU Library General Public License
15  *  along with this library; see the file COPYING.LIB.  If not, write to
16  *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  *  Boston, MA 02110-1301, USA.
18  *
19  */
20
21 #ifndef WTF_Forward_h
22 #define WTF_Forward_h
23
24 #include <stddef.h>
25
26 namespace WTF {
27     template<typename T> class Function;
28     template<typename T> class ListRefPtr;
29     template<typename T> class OwnArrayPtr;
30     template<typename T> class OwnPtr;
31     template<typename T> class PassOwnArrayPtr;
32     template<typename T> class PassOwnPtr;
33     template<typename T> class PassRefPtr;
34     template<typename T> class RefPtr;
35     template<typename T, size_t inlineCapacity> class Vector;
36     
37     class ArrayBuffer;
38     class ArrayBufferView;
39     class AtomicString;
40     class AtomicStringImpl;
41     class CString;
42     class Decoder;
43     class Encoder;
44     class Float32Array;
45     class Float64Array;
46     class Int8Array;
47     class Int16Array;
48     class Int32Array;
49     class String;
50     template <typename T> class StringBuffer;
51 #if ENABLE(TIZEN_TEXT_CODEC_MEMORY_REDUCTION)
52     template <typename T> class StringBufferConst;
53 #endif
54     class StringBuilder;
55     class StringImpl;
56     class Uint8Array;
57     class Uint8ClampedArray;
58     class Uint16Array;
59     class Uint32Array;
60 }
61
62 using WTF::Function;
63 using WTF::ListRefPtr;
64 using WTF::OwnArrayPtr;
65 using WTF::OwnPtr;
66 using WTF::PassOwnArrayPtr;
67 using WTF::PassOwnPtr;
68 using WTF::PassRefPtr;
69 using WTF::RefPtr;
70 using WTF::Vector;
71
72 using WTF::ArrayBuffer;
73 using WTF::ArrayBufferView;
74 using WTF::AtomicString;
75 using WTF::AtomicStringImpl;
76 using WTF::CString;
77 using WTF::Encoder;
78 using WTF::Decoder;
79 using WTF::Float32Array;
80 using WTF::Float64Array;
81 using WTF::Int8Array;
82 using WTF::Int16Array;
83 using WTF::Int32Array;
84 using WTF::String;
85 using WTF::StringBuffer;
86 using WTF::StringBuilder;
87 using WTF::StringImpl;
88 using WTF::Uint8Array;
89 using WTF::Uint8ClampedArray;
90 using WTF::Uint16Array;
91 using WTF::Uint32Array;
92
93 #endif // WTF_Forward_h