2014-05-05 17:30:46 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2001-04-02 19:40:52 +00:00
|
|
|
|
|
|
|
/* nsStringFwd.h --- forward declarations for string classes */
|
|
|
|
|
|
|
|
#ifndef nsStringFwd_h___
|
|
|
|
#define nsStringFwd_h___
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
#include "nscore.h"
|
2001-06-29 12:47:43 +00:00
|
|
|
|
2007-08-06 20:13:19 +00:00
|
|
|
#ifndef MOZILLA_INTERNAL_API
|
|
|
|
#error Internal string headers are not available from external-linkage code.
|
|
|
|
#endif
|
2001-04-02 19:40:52 +00:00
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
/**
|
|
|
|
* double-byte (char16_t) string types
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
|
|
|
|
class nsAString;
|
2004-02-19 02:44:03 +00:00
|
|
|
class nsSubstringTuple;
|
|
|
|
class nsString;
|
|
|
|
class nsAutoString;
|
|
|
|
class nsDependentString;
|
|
|
|
class nsDependentSubstring;
|
|
|
|
class nsPromiseFlatString;
|
|
|
|
class nsStringComparator;
|
|
|
|
class nsDefaultStringComparator;
|
|
|
|
class nsXPIDLString;
|
2001-04-02 19:40:52 +00:00
|
|
|
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
/**
|
|
|
|
* single-byte (char) string types
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
class nsACString;
|
|
|
|
class nsCSubstringTuple;
|
|
|
|
class nsCString;
|
2012-09-02 02:35:17 +00:00
|
|
|
class nsAutoCString;
|
2004-02-19 02:44:03 +00:00
|
|
|
class nsDependentCString;
|
|
|
|
class nsDependentCSubstring;
|
|
|
|
class nsPromiseFlatCString;
|
|
|
|
class nsCStringComparator;
|
|
|
|
class nsDefaultCStringComparator;
|
|
|
|
class nsXPIDLCString;
|
2001-04-02 19:40:52 +00:00
|
|
|
|
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
/**
|
|
|
|
* typedefs for backwards compatibility
|
|
|
|
*/
|
2001-04-02 19:40:52 +00:00
|
|
|
|
2005-01-24 16:44:41 +00:00
|
|
|
typedef nsAString nsSubstring;
|
|
|
|
typedef nsACString nsCSubstring;
|
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
typedef nsString nsAFlatString;
|
|
|
|
typedef nsSubstring nsASingleFragmentString;
|
|
|
|
|
|
|
|
typedef nsCString nsAFlatCString;
|
|
|
|
typedef nsCSubstring nsASingleFragmentCString;
|
2001-04-02 19:40:52 +00:00
|
|
|
|
2014-05-05 17:30:46 +00:00
|
|
|
|
2001-04-02 19:40:52 +00:00
|
|
|
#endif /* !defined(nsStringFwd_h___) */
|