edd@max:~/svn/rinside/pkg/inst/examples/standard$ cat rinside_test2.cpp
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil;
-*-
//
// Show the search path to check if package methods is loaded
//
// Copyright (C) 2012 Dirk Eddelbuettel and GPL'ed
#include
On 5 October 2012 at 13:09, Peter deVoil wrote:
| I'm not sure whether it's appropriate, but with Rtools 2.15 and R 2.15.1
| under windows, I had to kick off my package with
| ...
| R = new RInside(argc, argv, true);
| R->parseEval("library(\"methods\")");
| (*R)["xyz"] = LOAD_R
I'm not sure whether it's appropriate, but with Rtools 2.15 and R 2.15.1
under windows, I had to kick off my package with
...
R = new RInside(argc, argv, true);
R->parseEval("library(\"methods\")");
(*R)["xyz"] = LOAD_RCPP_MODULE(xyz) ;
...
Didnt have time to investigate further,