Class
List
Hierarchy
Modules
Common
Events
Math
Messages
Physics
Rendering
Sensors
Transport
Links
Gazebo Website
Wiki
Tutorials
Download
Report Documentation Issues
gazebo
gui
model
qgv
qgv.h
Go to the documentation of this file.
1
/***************************************************************
2
QGVCore
3
Copyright (c) 2014, Bergont Nicolas, All rights reserved.
4
5
This library is free software; you can redistribute it and/or
6
modify it under the terms of the GNU Lesser General Public
7
License as published by the Free Software Foundation; either
8
version 3.0 of the License, or (at your option) any later version.
9
10
This library 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 GNU
13
Lesser General Public License for more details.
14
15
You should have received a copy of the GNU Lesser General Public
16
License along with this library.
17
***************************************************************/
18
19
#ifndef QGV_H
20
#define QGV_H
21
22
#include <QtGlobal>
23
24
#if defined(_WIN32) && defined(_MSC_VER)
25
26
#ifdef QGVCORE_LIB
27
#define QGVCORE_EXPORT Q_DECL_EXPORT
28
#else
29
#define QGVCORE_EXPORT Q_DECL_IMPORT
30
#endif
31
32
#else
33
#define QGVCORE_EXPORT
34
#endif
35
36
#endif