blob: 5be1f8d9aeeb48f0d6901691aaa63b05c959da0c [file] [log] [blame]
Kateryna Kostiukecaa3952018-07-13 16:00:34 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 22019 Savoir-faire Linux Inc.
Kateryna Kostiukecaa3952018-07-13 16:00:34 -04003 * Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#import <Cocoa/Cocoa.h>
21#import "LrcModelsProtocol.h"
22
23@protocol AddSIPAccountDelegate <NSObject>
Kateryna Kostiuke2c4e082018-10-22 16:20:22 -040024- (void)didCreateAccountWithSuccess:(BOOL)success;
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040025- (void)showView:(NSView*)view;
26@end
27
28@interface AddSIPAccountVC : NSViewController <LrcModelsProtocol>
29@property (nonatomic, weak) NSWindowController <AddSIPAccountDelegate>* delegate;
30- (void)show;
31
32@end