CoinTypes.hpp
Go to the documentation of this file.
1 /* $Id: CoinTypes.hpp 1215 2009-11-05 11:03:04Z forrest $ */
2 // Copyright (C) 2004, International Business Machines
3 // Corporation and others. All Rights Reserved.
4 
5 #ifndef _CoinTypes_hpp
6 #define _CoinTypes_hpp
7 
8 #include "CoinUtilsConfig.h"
9 
10 #ifdef HAVE_CINTTYPES
11 # include <cinttypes>
12 #else
13 # ifdef HAVE_INTTYPES_H
14 # include <inttypes.h>
15 # endif
16 #endif
17 
18 #define CoinInt64 COIN_INT64_T
19 #define CoinUInt64 COIN_UINT64_T
20 #define CoinIntPtr COIN_INTPTR_T
21 
22 #endif