Bumping manifests a=b2g-bump
[gecko.git] / xpcom / string / nsTLiteralString.h
blobb69993c188c9da558365729b28ca764d7fc4c174
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 /**
9 * nsTLiteralString_CharT
11 * Stores a null-terminated, immutable sequence of characters.
13 * Subclass of nsTString that restricts string value to a literal
14 * character sequence. This class does not own its data. The data is
15 * assumed to be permanent. In practice this is true because this code
16 * is only usable by and for libxul.
18 class nsTLiteralString_CharT : public nsTString_CharT
20 public:
22 typedef nsTLiteralString_CharT self_type;
24 public:
26 /**
27 * constructor
30 template<size_type N>
31 nsTLiteralString_CharT(const char_type (&aStr)[N])
32 : string_type(const_cast<char_type*>(aStr), N - 1, F_TERMINATED | F_LITERAL)
36 private:
38 // NOT TO BE IMPLEMENTED
39 template<size_type N>
40 nsTLiteralString_CharT(char_type (&aStr)[N]) MOZ_DELETE;