initial import
[vuplus_webkit] / Source / JavaScriptCore / 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 ListRefPtr;
28     template<typename T> class OwnArrayPtr;
29     template<typename T> class OwnPtr;
30     template<typename T> class PassOwnArrayPtr;
31     template<typename T> class PassOwnPtr;
32     template<typename T> class PassRefPtr;
33     template<typename T> class RefPtr;
34     template<typename T, size_t inlineCapacity> class Vector;
35
36     class AtomicString;
37     class AtomicStringImpl;
38     class CString;
39     class Decoder;
40     class Encoder;
41     class String;
42     class StringBuffer;
43     class StringBuilder;
44     class StringImpl;
45 }
46
47 using WTF::ListRefPtr;
48 using WTF::OwnArrayPtr;
49 using WTF::OwnPtr;
50 using WTF::PassOwnArrayPtr;
51 using WTF::PassOwnPtr;
52 using WTF::PassRefPtr;
53 using WTF::RefPtr;
54 using WTF::Vector;
55
56 using WTF::AtomicString;
57 using WTF::AtomicStringImpl;
58 using WTF::CString;
59 using WTF::Encoder;
60 using WTF::Decoder;
61 using WTF::String;
62 using WTF::StringBuffer;
63 using WTF::StringBuilder;
64 using WTF::StringImpl;
65
66 #endif // WTF_Forward_h