]> git.sesse.net Git - vlc/blob - modules/gui/qt4/dialogs/epg.hpp
1d6bedf8cb556b179647ca29a01feb03bcd8a006
[vlc] / modules / gui / qt4 / dialogs / epg.hpp
1 /*****************************************************************************
2  * epg.cpp : EPG Viewer dialog
3  ****************************************************************************
4  * Copyright © 2010 VideoLAN and AUTHORS
5  *
6  * Authors:    Jean-Baptiste Kempf <jb@videolan.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software Foundation, Inc.,
20  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21  *****************************************************************************/
22
23 #ifndef QVLC_EPG_DIALOG_H_
24 #define QVLC_EPG_DIALOG_H_ 1
25
26 #include "util/qvlcframe.hpp"
27
28 #include "util/singleton.hpp"
29
30
31 class EpgDialog : public QVLCFrame, public Singleton<EpgDialog>
32 {
33     Q_OBJECT;
34 private:
35     EpgDialog( intf_thread_t * );
36     virtual ~EpgDialog();
37
38     friend class    Singleton<EpgDialog>;
39 };
40
41 #endif
42