FreeRDP
MainTabBarController.m
1 /*
2  main tabbar controller
3 
4  Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5 
6  This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7  If a copy of the MPL was not distributed with this file, You can obtain one at
8  http://mozilla.org/MPL/2.0/.
9  */
10 
11 #import "MainTabBarController.h"
12 
13 @implementation MainTabBarController
14 
15 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
16 {
17  return YES;
18 }
19 
20 @end