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/. */
|
2005-04-05 17:40:32 +00:00
|
|
|
|
|
|
|
#ifndef nsNetStrings_h__
|
|
|
|
#define nsNetStrings_h__
|
|
|
|
|
|
|
|
#include "nsLiteralString.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class on which wide strings are available, to avoid constructing strings
|
|
|
|
* wherever these strings are used.
|
|
|
|
*/
|
|
|
|
class nsNetStrings {
|
|
|
|
public:
|
|
|
|
nsNetStrings();
|
|
|
|
|
2010-04-10 20:08:21 +00:00
|
|
|
const nsLiteralString kChannelPolicy;
|
2005-04-05 17:40:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern NS_HIDDEN_(nsNetStrings*) gNetStrings;
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|