1 /*****************************************************************************
2 * VLCSidebarDataSource.h: MacOS X interface module
3 *****************************************************************************
4 * Copyright (C) 2021 VLC authors and VideoLAN
5 * $Id: 4b451a36ceb640a5b81cd26f929317ad3da36afd $
6 *
7 * Authors: Felix Paul Kühne <fkuehne -at- videolan -dot- org>
8 *          Jon Lech Johansen <jon-vl@nanocrew.net>
9 *          Christophe Massiot <massiot@via.ecp.fr>
10 *          Derk-Jan Hartman <hartman at videolan.org>
11 *          David Fuhrmann <david dot fuhrmann at googlemail dot com>
12 *
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26 *****************************************************************************/
27 
28 #import <Foundation/Foundation.h>
29 
30 NS_ASSUME_NONNULL_BEGIN
31 
32 @class PXSourceList;
33 
34 @interface VLCSidebarDataSource : NSObject
35 
36 @property (readwrite, weak) PXSourceList *sidebarView;
37 
38 - (void)reloadSidebar;
39 
40 @end
41 
42 NS_ASSUME_NONNULL_END
43