Updating Doxygen styling and Licenses
[baulk.git] / src / Widgets / BaulkSwallow / wrapper_baulkswallow.h
blob54e7271e7feb06ed97411948d0655508879b242c
1 // Baulk - Baulk Swallow - DLL Wrapper
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_BAULKSWALLOW_H
19 #define __WRAPPER_BAULKSWALLOW_H
21 #ifdef Q_WS_WIN
22 #define EXPORTDLL __declspec(dllexport)
23 #else
24 #define EXPORTDLL
25 #endif
28 #include <QWidget>
30 #include <baulkwidget.h>
32 #include "baulkswallow.h"
34 // Exported Symbols *******************************************************************************
35 //! DLL Wrapper for Baulk Swallow
36 extern "C" EXPORTDLL {
37 QStringList symbolList();
39 BaulkWidget *baulkswallow_configWidget( QWidget *parent );
40 BaulkWidget *baulkswallow_mainWidget( QWidget *parent );
42 QString baulkswallow_widgetName();
45 // Misc Declarations ******************************************************************************
46 BaulkSwallow *swallow;
48 #endif