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 | |
28 | template<typename T> class Function; |
29 | template<typename T> class LazyNeverDestroyed; |
30 | template<typename T> class NeverDestroyed; |
31 | template<typename T> class OptionSet; |
32 | template<typename T> class Optional; |
33 | template<typename T> class PassRefPtr; |
34 | template<typename T> class Ref; |
35 | template<typename T> class RefPtr; |
36 | template<typename T> class StringBuffer; |
37 | |
38 | template<typename T, size_t inlineCapacity, typename OverflowHandler, size_t minCapacity> class Vector; |
39 | |
40 | class AtomicString; |
41 | class AtomicStringImpl; |
42 | class BinarySemaphore; |
43 | class CString; |
44 | class Decoder; |
45 | class Encoder; |
46 | class FunctionDispatcher; |
47 | class OrdinalNumber; |
48 | class PrintStream; |
49 | class String; |
50 | class StringBuilder; |
51 | class StringImpl; |
52 | class StringView; |
53 | class TextPosition; |
54 | |
55 | } |
56 | |
57 | using WTF::AtomicString; |
58 | using WTF::AtomicStringImpl; |
59 | using WTF::BinarySemaphore; |
60 | using WTF::CString; |
61 | using WTF::Decoder; |
62 | using WTF::Encoder; |
63 | using WTF::Function; |
64 | using WTF::FunctionDispatcher; |
65 | using WTF::LazyNeverDestroyed; |
66 | using WTF::NeverDestroyed; |
67 | using WTF::OptionSet; |
68 | using WTF::Optional; |
69 | using WTF::OrdinalNumber; |
70 | using WTF::PassRefPtr; |
71 | using WTF::PrintStream; |
72 | using WTF::Ref; |
73 | using WTF::RefPtr; |
74 | using WTF::String; |
75 | using WTF::StringBuffer; |
76 | using WTF::StringBuilder; |
77 | using WTF::StringImpl; |
78 | using WTF::StringView; |
79 | using WTF::TextPosition; |
80 | using WTF::Vector; |
81 | |
82 | #endif // WTF_Forward_h |
83 | |