2013-10-20 12:34:55 +00:00
|
|
|
#ifndef SYSTEM_GLOBAL_H
|
|
|
|
#define SYSTEM_GLOBAL_H
|
|
|
|
|
2013-11-11 12:56:39 +00:00
|
|
|
#define PAYSAGES_USE_INLINING 1
|
|
|
|
|
2013-11-03 12:00:31 +00:00
|
|
|
#include <QtCore/qglobal.h>
|
2013-10-20 14:47:59 +00:00
|
|
|
#if defined(SYSTEM_LIBRARY)
|
|
|
|
# define SYSTEMSHARED_EXPORT Q_DECL_EXPORT
|
|
|
|
#else
|
|
|
|
# define SYSTEMSHARED_EXPORT Q_DECL_IMPORT
|
|
|
|
#endif
|
2013-10-20 12:34:55 +00:00
|
|
|
|
2013-11-11 12:56:39 +00:00
|
|
|
namespace paysages {
|
|
|
|
namespace system {
|
|
|
|
class PackStream;
|
2013-12-09 10:59:57 +00:00
|
|
|
class ParallelQueue;
|
|
|
|
class ParallelWork;
|
2013-12-23 13:09:52 +00:00
|
|
|
class ParallelPool;
|
2013-12-09 10:59:57 +00:00
|
|
|
class Thread;
|
|
|
|
class Mutex;
|
2013-11-11 12:56:39 +00:00
|
|
|
}
|
2013-10-20 12:34:55 +00:00
|
|
|
}
|
|
|
|
using namespace paysages::system;
|
2013-10-20 13:24:58 +00:00
|
|
|
|
2013-10-20 12:34:55 +00:00
|
|
|
#endif // SYSTEM_GLOBAL_H
|