Blame client/iOS/Controllers/CredentialsEditorController.h

Packit Service fa4841
/*
Packit Service fa4841
 Controller to edit bookmark credentials
Packit Service bb5c11
 
Packit Service fa4841
 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
Packit Service bb5c11
 
Packit Service bb5c11
 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. 
Packit Service bb5c11
 If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit Service fa4841
 */
Packit Service fa4841
Packit Service fa4841
#import "EditorBaseController.h"
Packit Service fa4841
Packit Service fa4841
@class ComputerBookmark;
Packit Service fa4841
@class ConnectionParams;
Packit Service fa4841
Packit Service fa4841
@interface CredentialsEditorController : EditorBaseController
Packit Service fa4841
{
Packit Service bb5c11
@private
Packit Service bb5c11
    ComputerBookmark* _bookmark;
Packit Service bb5c11
    ConnectionParams* _params;
Packit Service fa4841
}
Packit Service fa4841
Packit Service fa4841
// init for the given bookmark
Packit Service bb5c11
- (id)initWithBookmark:(ComputerBookmark*)bookmark;
Packit Service fa4841
Packit Service fa4841
@end