blob: 4bb3f2ca4c9c21bb57eb889de6bd0f7609395568 [file] [log] [blame]
Kateryna Kostiukecaa3952018-07-13 16:00:34 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002* Copyright (C) 2018-2019 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
20namespace lrc {
21 namespace api {
22 class DataTransferModel;
23 class NewAccountModel;
24 class BehaviorController;
Kateryna Kostiukf6317422018-09-27 17:08:20 -040025 class AVModel;
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040026 }
27}
28
29@protocol LrcModelsProtocol
30
31-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil dataTransferModel:(const lrc::api::DataTransferModel*) dataTransferModel;
Kateryna Kostiukc3fc76c2019-01-06 22:12:34 -050032-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil avModel:(const lrc::api::AVModel*) avModel;
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040033-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountmodel:(const lrc::api::NewAccountModel*) accountModel;
34-(id) initWithWindowNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountModel:(const lrc::api::NewAccountModel*)accountModel dataTransferModel:(const lrc::api::DataTransferModel*)dataTransferModel behaviourController:(const lrc::api::BehaviorController*) behaviorController;
Kateryna Kostiukf6317422018-09-27 17:08:20 -040035-(id) initWithWindowNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil accountModel:(const lrc::api::NewAccountModel*)accountModel dataTransferModel:(const lrc::api::DataTransferModel*)dataTransferModel behaviourController:(const lrc::api::BehaviorController*) behaviorController avModel: (const lrc::api::AVModel*)avModel;
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040036
37@property lrc::api::DataTransferModel* dataTransferModel;
38@property lrc::api::NewAccountModel* accountModel;
39@property lrc::api::BehaviorController* behaviorController;
Kateryna Kostiukf6317422018-09-27 17:08:20 -040040@property lrc::api::AVModel* avModel;
Kateryna Kostiukecaa3952018-07-13 16:00:34 -040041
42@end