2013-02-14 14:59:12 +01:00
|
|
|
/*
|
|
|
|
|
Application info controller
|
2019-11-06 15:24:51 +01:00
|
|
|
|
2013-12-04 11:37:57 +01:00
|
|
|
Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
|
2019-11-06 15:24:51 +01: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/.
|
2013-02-14 14:59:12 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
2013-04-08 13:25:00 +02:00
|
|
|
@interface AboutController : UIViewController <UIWebViewDelegate>
|
2013-02-14 14:59:12 +01:00
|
|
|
{
|
2019-11-06 15:24:51 +01:00
|
|
|
NSString *last_link_clicked;
|
|
|
|
|
UIWebView *webView;
|
2013-02-14 14:59:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|