paysages3d/src/basics/basics_global.h

22 lines
423 B
C
Raw Normal View History

#ifndef BASICS_GLOBAL_H
#define BASICS_GLOBAL_H
/* Shared object helpers */
2013-11-03 14:46:39 +00:00
#include <QtCore/qglobal.h>
2013-11-09 17:46:34 +00:00
#if defined(BASICS_LIBRARY)
# define BASICSSHARED_EXPORT Q_DECL_EXPORT
#else
# define BASICSSHARED_EXPORT Q_DECL_IMPORT
#endif
/* Namespace using */
namespace paysages
{
2013-11-03 14:46:39 +00:00
namespace system {}
namespace basics {}
}
using namespace paysages::system;
2013-11-03 14:46:39 +00:00
using namespace paysages::basics;
#endif // BASICS_GLOBAL_H