Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | /* nsStringFwd.h --- forward declarations for string classes */ |
michael@0 | 7 | |
michael@0 | 8 | #ifndef nsStringFwd_h___ |
michael@0 | 9 | #define nsStringFwd_h___ |
michael@0 | 10 | |
michael@0 | 11 | #include "nscore.h" |
michael@0 | 12 | |
michael@0 | 13 | #ifndef MOZILLA_INTERNAL_API |
michael@0 | 14 | #error Internal string headers are not available from external-linkage code. |
michael@0 | 15 | #endif |
michael@0 | 16 | |
michael@0 | 17 | /** |
michael@0 | 18 | * double-byte (char16_t) string types |
michael@0 | 19 | */ |
michael@0 | 20 | |
michael@0 | 21 | class nsAString; |
michael@0 | 22 | class nsSubstringTuple; |
michael@0 | 23 | class nsString; |
michael@0 | 24 | class nsAutoString; |
michael@0 | 25 | class nsDependentString; |
michael@0 | 26 | class nsDependentSubstring; |
michael@0 | 27 | class nsPromiseFlatString; |
michael@0 | 28 | class nsStringComparator; |
michael@0 | 29 | class nsDefaultStringComparator; |
michael@0 | 30 | class nsXPIDLString; |
michael@0 | 31 | |
michael@0 | 32 | |
michael@0 | 33 | /** |
michael@0 | 34 | * single-byte (char) string types |
michael@0 | 35 | */ |
michael@0 | 36 | |
michael@0 | 37 | class nsACString; |
michael@0 | 38 | class nsCSubstringTuple; |
michael@0 | 39 | class nsCString; |
michael@0 | 40 | class nsAutoCString; |
michael@0 | 41 | class nsDependentCString; |
michael@0 | 42 | class nsDependentCSubstring; |
michael@0 | 43 | class nsPromiseFlatCString; |
michael@0 | 44 | class nsCStringComparator; |
michael@0 | 45 | class nsDefaultCStringComparator; |
michael@0 | 46 | class nsXPIDLCString; |
michael@0 | 47 | |
michael@0 | 48 | |
michael@0 | 49 | /** |
michael@0 | 50 | * typedefs for backwards compatibility |
michael@0 | 51 | */ |
michael@0 | 52 | |
michael@0 | 53 | typedef nsAString nsSubstring; |
michael@0 | 54 | typedef nsACString nsCSubstring; |
michael@0 | 55 | |
michael@0 | 56 | typedef nsString nsAFlatString; |
michael@0 | 57 | typedef nsSubstring nsASingleFragmentString; |
michael@0 | 58 | |
michael@0 | 59 | typedef nsCString nsAFlatCString; |
michael@0 | 60 | typedef nsCSubstring nsASingleFragmentCString; |
michael@0 | 61 | |
michael@0 | 62 | |
michael@0 | 63 | #endif /* !defined(nsStringFwd_h___) */ |