FreeRDP/client/iOS/Models/GlobalDefaults.h

31 lines
755 B
C
Raw Normal View History

/*
Global default bookmark settings
2019-11-06 17:24:51 +03:00
2013-12-04 14:37:57 +04:00
Copyright 2013 Thincast Technologies GmbH, Author: Dorian Johnson
2019-11-06 17:24:51 +03: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/.
*/
#import <Foundation/Foundation.h>
@class ConnectionParams, ComputerBookmark;
2019-11-06 17:24:51 +03:00
@interface GlobalDefaults : NSObject
{
@private
ComputerBookmark *_default_bookmark;
}
2019-11-06 17:24:51 +03:00
+ (GlobalDefaults *)sharedGlobalDefaults;
// The same object is always returned from this method.
2019-11-06 17:24:51 +03:00
@property(readonly, nonatomic) ComputerBookmark *bookmark;
2019-11-06 17:24:51 +03:00
- (ConnectionParams *)newParams;
- (ComputerBookmark *)newBookmark;
- (ComputerBookmark *)newTestServerBookmark;
@end