blob: de456b23d739b3859daafe90df82870bb57ea9aa [file] [log] [blame]
Alexandre Lisionf5fc4792015-03-17 09:15:43 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2015-2019 Savoir-faire Linux Inc.
Alexandre Lisionf5fc4792015-03-17 09:15:43 -04003 * Author: Alexandre Lision <alexandre.lision@savoirfairelinux.com>
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -04004 * Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
Alexandre Lisionf5fc4792015-03-17 09:15:43 -04005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Alexandre Lisionf5fc4792015-03-17 09:15:43 -040019 */
Alexandre Lision9fe374b2016-01-06 10:17:31 -050020
Alexandre Lisionf5fc4792015-03-17 09:15:43 -040021#import <Cocoa/Cocoa.h>
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040022#import "LrcModelsProtocol.h"
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040023#import "BackupAccountWC.h"
24#import "RegisterNameWC.h"
25#import "AccountSettingsVC.h"
26#import "PasswordChangeWC.h"
Alexandre Lisionf5fc4792015-03-17 09:15:43 -040027
Kateryna Kostiuk1f8c1252018-07-30 18:18:57 -040028@interface AccRingGeneralVC : NSViewController <NSTextFieldDelegate, LrcModelsProtocol, BackupAccountDelegate, RegisterNameDelegate, AccountGeneralProtocol, NSTableViewDelegate, NSTableViewDataSource, PasswordChangeDelegate>
29
30- (void) setSelectedAccount:(std::string) account;
31
32@property (assign)BOOL accountEnabled;
Alexandre Lisionf5fc4792015-03-17 09:15:43 -040033
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040034@end