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