1 /* -*- Mode: Objective-C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset:
2  * 2 -*- */
3 /* vim: set ts=2 et sw=2 tw=80: */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 
8 #ifndef _MacUtils_H_
9 #define _MacUtils_H_
10 
11 #include "nsStringFwd.h"
12 
13 @class NSString;
14 
15 namespace mozilla {
16 namespace a11y {
17 namespace utils {
18 
19 /**
20  * Get a localized string from the string bundle.
21  * Return nil if not found.
22  */
23 NSString* LocalizedString(const nsString& aString);
24 
25 }  // namespace utils
26 }  // namespace a11y
27 }  // namespace mozilla
28 
29 #endif
30