Rcpp Version 0.10.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Friends Macros
Rcpp.h
Go to the documentation of this file.
1 // -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
2 //
3 // Rcpp.h: R/C++ interface class library
4 //
5 // Copyright (C) 2008 - 2009 Dirk Eddelbuettel
6 // Copyright (C) 2009 - 2012 Dirk Eddelbuettel and Romain Francois
7 //
8 // This file is part of Rcpp.
9 //
10 // Rcpp is free software: you can redistribute it and/or modify it
11 // under the terms of the GNU General Public License as published by
12 // the Free Software Foundation, either version 2 of the License, or
13 // (at your option) any later version.
14 //
15 // Rcpp is distributed in the hope that it will be useful, but
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 // GNU General Public License for more details.
19 //
20 // You should have received a copy of the GNU General Public License
21 // along with Rcpp. If not, see <http://www.gnu.org/licenses/>.
22 
23 #ifndef Rcpp_hpp
24 #define Rcpp_hpp
25 
26 /* it is important that this comes first */
27 #include <RcppCommon.h>
28 
29 /* new api */
30 #include <Rcpp/exceptions.h>
31 
32 #include <Rcpp/RObject.h>
33 
34 #include <Rcpp/Promise.h>
35 #include <Rcpp/S4.h>
36 #include <Rcpp/Reference.h>
37 #include <Rcpp/clone.h>
38 #include <Rcpp/grow.h>
39 #include <Rcpp/Dimension.h>
40 #include <Rcpp/Environment.h>
41 #include <Rcpp/Evaluator.h>
42 
43 #include <Rcpp/Vector.h>
44 #include <Rcpp/sugar/nona/nona.h>
45 #include <Rcpp/Fast.h>
46 #include <Rcpp/Extractor.h>
47 
48 #include <Rcpp/XPtr.h>
49 #include <Rcpp/Symbol.h>
50 #include <Rcpp/Language.h>
51 #include <Rcpp/DottedPair.h>
52 #include <Rcpp/Pairlist.h>
53 #include <Rcpp/Function.h>
54 #include <Rcpp/WeakReference.h>
55 #include <Rcpp/StringTransformer.h>
56 #include <Rcpp/Formula.h>
57 #include <Rcpp/DataFrame.h>
58 #include <Rcpp/Date.h>
59 #include <Rcpp/DateVector.h>
60 #include <Rcpp/Datetime.h>
61 #include <Rcpp/DatetimeVector.h>
62 
63 #include <Rcpp/Module.h>
64 #include <Rcpp/InternalFunction.h>
65 
66 #include <Rmath.h>
67 #include <Rcpp/sugar/undoRmath.h>
68 
69 #ifndef RCPP_NO_SUGAR
70 #include <Rcpp/sugar/sugar.h>
71 #include <Rcpp/stats/stats.h>
72 #endif
73 
74 // wrappers for R API 'scalar' functions
75 #include <Rcpp/Rmath.h>
76 
77 // this stays at the very end, because it needs to
78 // 'see' all versions of wrap
79 #include <Rcpp/internal/wrap_end.h>
80 
81 #include <Rcpp/api/meat/meat.h>
82 
83 #endif