/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* 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/. */
/** * nsTDependentString * * Stores a null-terminated, immutable sequence of characters. * * Subclass of nsTString that restricts string value to an immutable * character sequence. This class does not own its data, so the creator * of objects of this type must take care to ensure that a * nsTDependentString continues to reference valid memory for the * duration of its use.
*/ template <typename T> class nsTDependentString : public nsTString<T> { public: typedef nsTDependentString<T> self_type; typedef nsTString<T> base_string_type; typedeftypename base_string_type::string_type string_type;
// These are only for internal use within the string classes: typedeftypename base_string_type::DataFlags DataFlags; typedeftypename base_string_type::ClassFlags ClassFlags;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.