Home | History | Annotate | Download | only in wtf
      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 OwnPtr;
     29     template<typename T> class PassOwnPtr;
     30     template<typename T> class PassRefPtr;
     31     template<typename T> class RefPtr;
     32     template<typename T, size_t inlineCapacity> class Vector;
     33 
     34     class ArrayBuffer;
     35     class ArrayBufferView;
     36     class AtomicString;
     37     class CString;
     38     class Float32Array;
     39     class Float64Array;
     40     class Int8Array;
     41     class Int16Array;
     42     class Int32Array;
     43     class String;
     44     template <typename T> class StringBuffer;
     45     class StringBuilder;
     46     class StringImpl;
     47     class Uint8Array;
     48     class Uint8ClampedArray;
     49     class Uint16Array;
     50     class Uint32Array;
     51 }
     52 
     53 using WTF::Function;
     54 using WTF::OwnPtr;
     55 using WTF::PassOwnPtr;
     56 using WTF::PassRefPtr;
     57 using WTF::RefPtr;
     58 using WTF::Vector;
     59 
     60 using WTF::ArrayBuffer;
     61 using WTF::ArrayBufferView;
     62 using WTF::AtomicString;
     63 using WTF::CString;
     64 using WTF::Float32Array;
     65 using WTF::Float64Array;
     66 using WTF::Int8Array;
     67 using WTF::Int16Array;
     68 using WTF::Int32Array;
     69 using WTF::String;
     70 using WTF::StringBuffer;
     71 using WTF::StringBuilder;
     72 using WTF::StringImpl;
     73 using WTF::Uint8Array;
     74 using WTF::Uint8ClampedArray;
     75 using WTF::Uint16Array;
     76 using WTF::Uint32Array;
     77 
     78 #endif // WTF_Forward_h
     79