Go to the documentation of this file.
21 #ifndef RCPP__CONFIG_H
22 #define RCPP__CONFIG_H
24 #define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
26 #define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
29 #define RCPP_VERSION Rcpp_Version(1,0,9)
30 #define RCPP_VERSION_STRING "1.0.9"
33 #define RCPP_DEV_VERSION RcppDevVersion(1,0,9,0)
34 #define RCPP_DEV_VERSION_STRING "1.0.9.0"