dbusmenu-qt 0.8.2
|
00001 /* This file is part of the dbusmenu-qt library 00002 Copyright 2010 Canonical 00003 Author: Aurelien Gateau <aurelien.gateau@canonical.com> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License (LGPL) as published by the Free Software Foundation; 00008 either version 2 of the License, or (at your option) any later 00009 version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Library General Public License for more details. 00015 00016 You should have received a copy of the GNU Library General Public License 00017 along with this library; see the file COPYING.LIB. If not, write to 00018 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00019 Boston, MA 02110-1301, USA. 00020 */ 00021 #ifndef DBUSMENU_EXPORT_H 00022 #define DBUSMENU_EXPORT_H 00023 00024 // Include this file from here to make transition from version 0.3.5 and 00025 // earlier easier (no need to conditionally include a file) 00026 #include <dbusmenu_version.h> 00027 00028 // Qt 00029 #include <QtCore/QtGlobal> 00030 00031 #ifdef dbusmenu_qt_EXPORTS 00032 #define DBUSMENU_EXPORT Q_DECL_EXPORT 00033 #else 00034 #define DBUSMENU_EXPORT Q_DECL_IMPORT 00035 #endif 00036 00037 #endif /* DBUSMENU_EXPORT_H */