Go to the documentation of this file.00001 #ifndef _ATOMIC_INT_H
00002 #define _ATOMIC_INT_H
00003
00004 #ifdef QT_CORE_LIB
00005 #include <QAtomicInt>
00006 namespace mt{
00007 typedef QAtomicInt atomicInt;
00008 }
00009
00010 #elif defined(__APPLE__)
00011 # include "atomic_int_apple.h"
00012
00013
00014
00015 #else
00016 # include "atomic_int_generic.h"
00017 #endif
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #endif // _ATOMIC_INT_H
00035