Files
FreeRDP/client/iOS/Controllers/BookmarkGatewaySettingsController.h

27 lines
638 B
C
Raw Normal View History

2013-05-08 14:50:29 +02:00
/*
Controller to edit ts gateway bookmark settings
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
2013-05-08 14:50:29 +02:00
This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
2019-11-06 15:24:51 +01:00
If a copy of the MPL was not distributed with this file, You can obtain one at
http://mozilla.org/MPL/2.0/.
2013-05-08 14:50:29 +02:00
*/
2013-05-07 12:05:21 +02:00
2013-05-08 14:50:29 +02:00
#import "EditorBaseController.h"
2013-05-07 12:05:21 +02:00
2013-05-08 14:50:29 +02:00
@class ComputerBookmark;
@class ConnectionParams;
@interface BookmarkGatewaySettingsController : EditorBaseController
{
2019-11-06 15:24:51 +01:00
@private
ComputerBookmark *_bookmark;
ConnectionParams *_params;
2013-05-08 14:50:29 +02:00
}
// init for the given bookmark
2019-11-06 15:24:51 +01:00
- (id)initWithBookmark:(ComputerBookmark *)bookmark;
2013-05-07 12:05:21 +02:00
@end