[Rcpp-devel] compileAttributes does not scan header files

2014-10-14 Thread Chenliang Xu
Hello, compileAttributes currently only scan .cpp and .c files, and ignore header files (.h, .hpp). When a function is used in two or more cpp files, the default parameter of function should be provided in function declaration, which is usually included in a header file, so it seems to be nature t

Re: [Rcpp-devel] Updating R and RInside

2014-10-14 Thread Dirk Eddelbuettel
On 14 October 2014 at 23:39, David Ibarra Gómez wrote: | Well, at least I know where to address more questions, thank you. | | I'll maybe submit a question to the debian list you mention. I posted here by | the rinside installation. I was just looking for the fastest way (the old conf | its on s

Re: [Rcpp-devel] Updating R and RInside

2014-10-14 Thread David Ibarra Gómez
Well, at least I know where to address more questions, thank you. I'll maybe submit a question to the debian list you mention. I posted here by the rinside installation. I was just looking for the fastest way (the old conf its on several "production" machines), to upgrade R and RInside. Because

Re: [Rcpp-devel] Using an Rcpp module package in an R Reference Class

2014-10-14 Thread Christian Gunning
On Tue, Oct 14, 2014 at 9:19 AM, Dr Gregory Jefferis wrote: > >> * Rcpp: RCPP_EXPOSED_CLASS_NODECL(RaggedArray) >> * Rcpp: setRcppClass("RaggedArray") >> * roxygen2/NAMESPACE: @exportClass RaggedArray > > I'm not sure if the exact issue here, but you could look at this package > that I wrote: > >

Re: [Rcpp-devel] Updating R and RInside

2014-10-14 Thread Dirk Eddelbuettel
On 14 October 2014 at 13:29, David Ibarra Gómez wrote: | I usually build C++ executables on debian 7 (x64) that calls R | using RInside. It just so happens that everything it?s working with R 2.15 and | RInside 0.29. But I wanted some new features of some packages, but It?s seem |

Re: [Rcpp-devel] Updating R and RInside

2014-10-14 Thread David Ibarra Gómez
Sorry I meant R 2.15.2 and RInside 0.2.9. [cid:image001.jpg@01CFE7B3.94AF4370] David Ibarra Gómez Jefe de Proyectos Dirección de Ingeniería de Sistemas Aqualogy Aqua Ambiente diba...@aquology.net Barcelona - Torre Agbar Av Diagonal 211, Pl.2 08018 Barcelona Tel.

[Rcpp-devel] Updating R and RInside

2014-10-14 Thread David Ibarra Gómez
Hello, I usually build C++ executables on debian 7 (x64) that calls R using RInside. It just so happens that everything it's working with R 2.15 and RInside 0.29. But I wanted some new features of some packages, but It's seem mandatory to upgrade R > 3.0. Originally I installed

[Rcpp-devel] Using an Rcpp module package in an R Reference Class

2014-10-14 Thread Christian Gunning
Dear all, I have a working package that uses the Rcpp module mechanism (my RaggedArray project, as per previous discussion), and a working pure-R reference class (RefClass) that does computation on a list-based ragged array. I'm unsure on how to integrate the RaggedArray module into the RefClass.