Blame client/iOS/Models/GlobalDefaults.h

Packit Service fa4841
/*
Packit Service fa4841
 Global default bookmark settings
Packit Service fa4841
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Dorian Johnson
Packit Service fa4841
Packit Service fa4841
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
Packit Service fa4841
 If a copy of the MPL was not distributed with this file, You can obtain one at
Packit Service fa4841
 http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import <Foundation/Foundation.h>
Packit Service fa4841
Packit Service fa4841
@class ConnectionParams, ComputerBookmark;
Packit Service fa4841
Packit Service fa4841
@interface GlobalDefaults : NSObject
Packit Service fa4841
{
Packit Service fa4841
  @private
Packit Service fa4841
	ComputerBookmark *_default_bookmark;
Packit Service fa4841
}
Packit Service fa4841
Packit Service fa4841
+ (GlobalDefaults *)sharedGlobalDefaults;
Packit Service fa4841
Packit Service fa4841
// The same object is always returned from this method.
Packit Service fa4841
@property(readonly, nonatomic) ComputerBookmark *bookmark;
Packit Service fa4841
Packit Service fa4841
- (ConnectionParams *)newParams;
Packit Service fa4841
- (ComputerBookmark *)newBookmark;
Packit Service fa4841
- (ComputerBookmark *)newTestServerBookmark;
Packit Service fa4841
Packit Service fa4841
@end