|
| 1 | +// headers.h: Rcpp R/C++ interface class library -- R headers |
| 2 | +// |
| 3 | +// Copyright (C) 2008 - 2009 Dirk Eddelbuettel |
| 4 | +// Copyright (C) 2009 - 2013 Dirk Eddelbuettel and Romain Francois |
| 5 | +// |
| 6 | +// This file is part of Rcpp. |
| 7 | +// |
| 8 | +// Rcpp is free software: you can redistribute it and/or modify it |
| 9 | +// under the terms of the GNU General Public License as published by |
| 10 | +// the Free Software Foundation, either version 2 of the License, or |
| 11 | +// (at your option) any later version. |
| 12 | +// |
| 13 | +// Rcpp is distributed in the hope that it will be useful, but |
| 14 | +// WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | +// GNU General Public License for more details. |
| 17 | +// |
| 18 | +// You should have received a copy of the GNU General Public License |
| 19 | +// along with Rcpp. If not, see <http://www.gnu.org/licenses/>. |
| 20 | + |
| 21 | +#ifndef RCPP__R__HEADERS__H |
| 22 | +#define RCPP__R__HEADERS__H |
| 23 | + |
| 24 | +// include R headers, but set R_NO_REMAP and access everything via Rf_ prefixes |
| 25 | +#define MAXELTSIZE 8192 |
| 26 | +#define R_NO_REMAP |
| 27 | + |
| 28 | +// prevent some macro pollution when including R headers |
| 29 | +// in particular, on Linux, gcc 'leaks' the 'major', |
| 30 | +// 'minor' and 'makedev' macros on Linux; we prevent |
| 31 | +// letting those leak in after including any R headers |
| 32 | + |
| 33 | +#ifdef major |
| 34 | +# define RCPP_HAS_MAJOR_MACRO |
| 35 | +# pragma push_macro("major") |
| 36 | +#endif |
| 37 | + |
| 38 | +#ifdef minor |
| 39 | +# define RCPP_HAS_MINOR_MACRO |
| 40 | +# pragma push_macro("minor") |
| 41 | +#endif |
| 42 | + |
| 43 | +#ifdef makedev |
| 44 | +# define RCPP_HAS_MAKEDEV_MACRO |
| 45 | +# pragma push_macro("makedev") |
| 46 | +#endif |
| 47 | + |
| 48 | +#include <R.h> |
| 49 | +#include <Rinternals.h> |
| 50 | +#include <R_ext/Complex.h> |
| 51 | +#include <R_ext/Parse.h> |
| 52 | +#include <R_ext/Rdynload.h> |
| 53 | +#include <Rversion.h> |
| 54 | + |
| 55 | +#undef major |
| 56 | +#undef minor |
| 57 | +#undef makedev |
| 58 | + |
| 59 | +#ifdef RCPP_HAS_MAJOR_MACRO |
| 60 | +# pragma pop_macro("major") |
| 61 | +#endif |
| 62 | + |
| 63 | +#ifdef RCPP_HAS_MINOR_MACRO |
| 64 | +# pragma pop_macro("minor") |
| 65 | +#endif |
| 66 | + |
| 67 | +#ifdef RCPP_HAS_MAKEDEV_MACRO |
| 68 | +# pragma pop_macro("makedev") |
| 69 | +#endif |
| 70 | + |
| 71 | +#endif /* RCPP__R__HEADERS__H */ |
0 commit comments