aboutsummaryrefslogtreecommitdiff
path: root/iPhone/GTMUILocalizerTest.h
diff options
context:
space:
mode:
authorGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-10-28 15:00:21 +0000
committerGravatar gtm.daemon <gtm.daemon@7dc7ac4e-7543-0410-b95c-c1676fc8e2a3>2011-10-28 15:00:21 +0000
commitf62c657740d40e71c9fd6192e14d3b371970f4b3 (patch)
treebfc21eb1dd77d6d0ebe9b18382ea0527e14a6f01 /iPhone/GTMUILocalizerTest.h
parent56a2b11be338d2ed249a6cbc956166312df2dbb3 (diff)
[Author: qsr]
Implements GTMUILocalizer for iOS. The interface is exactly the same, the implementation does walk the UIKit view hierarchy, instead of the Cocoa one. R=thomasvl APPROVED=thomasvl
Diffstat (limited to 'iPhone/GTMUILocalizerTest.h')
-rw-r--r--iPhone/GTMUILocalizerTest.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/iPhone/GTMUILocalizerTest.h b/iPhone/GTMUILocalizerTest.h
new file mode 100644
index 0000000..041444d
--- /dev/null
+++ b/iPhone/GTMUILocalizerTest.h
@@ -0,0 +1,29 @@
+//
+// GTMUILocalizerTest.h
+//
+// Copyright 2011 Google Inc.
+//
+// Licensed under the Apache License, Version 2.0 (the "License"); you may not
+// use this file except in compliance with the License. You may obtain a copy
+// of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+// License for the specific language governing permissions and limitations under
+// the License.
+
+#import <UIKit/UIKit.h>
+
+#import "GTMUILocalizer.h"
+
+@interface GTMUILocalizerTestViewController : UIViewController {
+ @private
+ UILabel *label_;
+}
+
+@property(nonatomic, retain)IBOutlet UILabel *label;
+
+@end