FreeRDP
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Modules Pages
GlobalDefaults.h
1/*
2 Global default bookmark settings
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Dorian Johnson
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 <Foundation/Foundation.h>
12
14
15@interface GlobalDefaults : NSObject
16{
17 @private
18 ComputerBookmark *_default_bookmark;
19}
20
21+ (GlobalDefaults *)sharedGlobalDefaults;
22
23// The same object is always returned from this method.
24@property(readonly, nonatomic) ComputerBookmark *bookmark;
25
26- (ConnectionParams *)newParams;
27- (ComputerBookmark *)newBookmark;
28- (ComputerBookmark *)newTestServerBookmark;
29
30@end