blob: 6386c380f4118d5e63393e2a360324a743af069d [file] [log] [blame]
Kateryna Kostiuka16c9862017-05-03 13:30:14 -04001/*
2 * Copyright (C) 2015-2017 Savoir-faire Linux Inc.
3 * Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
Anthony Léonard49cb2912017-11-13 16:15:39 -05004 * Author: Olivier Soldano <olivier.soldano@savoirfairelinux.com>
5 * Author: Anthony Léonard <anthony.leonard@savoirfairelinux.com>
Kateryna Kostiuka16c9862017-05-03 13:30:14 -04006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 */
21
22#import <Foundation/Foundation.h>
23
Anthony Léonard49cb2912017-11-13 16:15:39 -050024namespace lrc {
25 namespace api {
26 class NewAccountModel;
27
28 namespace account {
29 struct Info;
30 }
31 }
32}
33
Kateryna Kostiuka16c9862017-05-03 13:30:14 -040034@interface AccountSelectionManager : NSObject
35
Anthony Léonard49cb2912017-11-13 16:15:39 -050036@property const lrc::api::account::Info& savedAccount;
37
Kateryna Kostiukab499f42018-04-16 12:27:33 -040038-(void) clearSelectedAccount;
Anthony Léonard49cb2912017-11-13 16:15:39 -050039- (id) initWithAccountModel:(const lrc::api::NewAccountModel*) accMdl;
Kateryna Kostiuka16c9862017-05-03 13:30:14 -040040
41@end