michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsParserMsgUtils_h michael@0: #define nsParserMsgUtils_h michael@0: michael@0: #include "nsString.h" michael@0: michael@0: #define XMLPARSER_PROPERTIES "chrome://global/locale/layout/xmlparser.properties" michael@0: michael@0: class nsParserMsgUtils { michael@0: nsParserMsgUtils(); // Currently this is not meant to be created, use the static methods michael@0: ~nsParserMsgUtils(); // If perf required, change this to cache values etc. michael@0: public: michael@0: static nsresult GetLocalizedStringByName(const char * aPropFileName, const char* aKey, nsString& aVal); michael@0: static nsresult GetLocalizedStringByID(const char * aPropFileName, uint32_t aID, nsString& aVal); michael@0: }; michael@0: michael@0: #endif