Updating Doxygen styling and Licenses
[baulk.git] / src / Widgets / BaulkTerm / wrapper / wrapper_baulkterm.h
blob25cb83f94c719ebb0ec8f5ac72f7ebde9eeedc38
1 // Baulk - Baulk Terminal - Terminal for Baulk using qtermwidget
2 //
3 // Baulk - Copyright (C) 2008 - Jacob Alexander
4 //
5 // Baulk 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 2 of the License, or
8 // any later version, including version 3 of the License.
9 //
10 // Baulk 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.
15 // You should have received a copy of the GNU General Public License
16 // along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef __WRAPPER_BAULKTERM_H
19 #define __WRAPPER_BAULKTERM_H
21 #ifdef Q_WS_WIN
22 #define EXPORTDLL __declspec(dllexport)
23 #else
24 #define EXPORTDLL
25 #endif
28 #include <QVBoxLayout>
29 #include <QWidget>
31 #include <baulkwidget.h>
33 #include "baulkterm.h"
35 // Exported Symbols *******************************************************************************
36 //! DLL Wrapper for qtermwidget, for use in Baulk.
37 extern "C" EXPORTDLL {
38 QStringList symbolList();
40 BaulkWidget *baulkterm_configWidget( QWidget *parent );
41 BaulkWidget *baulkterm_mainWidget( QWidget *parent );
43 QString baulkterm_widgetName();
46 // Misc Declarations ******************************************************************************
47 BaulkTerm *term;
49 #endif