blob: 30990d6f7ca595f1e1b37095a3dc95ae2bf8116d [file] [log] [blame]
Kateryna Kostiuk67735232018-05-10 15:05:32 -04001/*
2* This program is free software; you can redistribute it and/or modify
3* it under the terms of the GNU General Public License as published by
4* the Free Software Foundation; either version 3 of the License, or
5* (at your option) any later version.
6*
7* This program is distributed in the hope that it will be useful,
8* but WITHOUT ANY WARRANTY; without even the implied warranty of
9* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10* GNU General Public License for more details.
11*
12* You should have received a copy of the GNU General Public License
13* along with this program; if not, write to the Free Software
14* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
15*/
16
17namespace lrc {
18 namespace api {
19 class DataTransferModel;
20 }
21}
22
23@protocol LrcModelsSProtocol
24
25-(id) initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil model:(lrc::api::DataTransferModel*) dataTransferModel;
26
27@property lrc::api::DataTransferModel* dataTransferModel;
28
29@end