MessagePack for C
hp_acc.h
Go to the documentation of this file.
1 /*
2 Copyright Rene Rivera 2008-2015
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE_1_0.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt)
6 */
7 
8 #ifndef MSGPACK_PREDEF_COMPILER_HP_ACC_H
9 #define MSGPACK_PREDEF_COMPILER_HP_ACC_H
10 
12 #include <msgpack/predef/make.h>
13 
14 /*`
15 [heading `MSGPACK_COMP_HPACC`]
16 
17 HP aC++ compiler.
18 Version number available as major, minor, and patch.
19 
20 [table
21  [[__predef_symbol__] [__predef_version__]]
22 
23  [[`__HP_aCC`] [__predef_detection__]]
24 
25  [[`__HP_aCC`] [V.R.P]]
26  ]
27  */
28 
29 #define MSGPACK_COMP_HPACC MSGPACK_VERSION_NUMBER_NOT_AVAILABLE
30 
31 #if defined(__HP_aCC)
32 # if !defined(MSGPACK_COMP_HPACC_DETECTION) && (__HP_aCC > 1)
33 # define MSGPACK_COMP_HPACC_DETECTION MSGPACK_PREDEF_MAKE_10_VVRRPP(__HP_aCC)
34 # endif
35 # if !defined(MSGPACK_COMP_HPACC_DETECTION)
36 # define MSGPACK_COMP_HPACC_DETECTION MSGPACK_VERSION_NUMBER_AVAILABLE
37 # endif
38 #endif
39 
40 #ifdef MSGPACK_COMP_HPACC_DETECTION
41 # if defined(MSGPACK_PREDEF_DETAIL_COMP_DETECTED)
42 # define MSGPACK_COMP_HPACC_EMULATED MSGPACK_COMP_HPACC_DETECTION
43 # else
44 # undef MSGPACK_COMP_HPACC
45 # define MSGPACK_COMP_HPACC MSGPACK_COMP_HPACC_DETECTION
46 # endif
47 # define MSGPACK_COMP_HPACC_AVAILABLE
49 #endif
50 
51 #define MSGPACK_COMP_HPACC_NAME "HP aC++"
52 
53 #endif
54 
57 
58 #ifdef MSGPACK_COMP_HPACC_EMULATED
60 MSGPACK_PREDEF_DECLARE_TEST(MSGPACK_COMP_HPACC_EMULATED,MSGPACK_COMP_HPACC_NAME)
61 #endif
#define MSGPACK_COMP_HPACC_NAME
Definition: hp_acc.h:51
#define MSGPACK_PREDEF_DECLARE_TEST(x, s)
Definition: test.h:13
#define MSGPACK_COMP_HPACC
Definition: hp_acc.h:29