RInside Version 0.2.16
rinside_callbacks0.cpp
Go to the documentation of this file.
1 // -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; tab-width: 8; -*-
2 //
3 // Simple example showing how to do the standard 'hello, world' using embedded R
4 //
5 // Copyright (C) 2009 Dirk Eddelbuettel
6 // Copyright (C) 2010 Dirk Eddelbuettel and Romain Francois
7 //
8 // GPL'ed
9 
10 #include <RInside.h> // for the embedded R via RInside
11 
12 int main(int argc, char *argv[]) {
13 
14  RInside R(argc, argv); // create an embedded R instance
15  #if defined(RINSIDE_CALLBACKS)
16  R.set_callbacks( new Callbacks() );
17  R.repl() ;
18  #endif
19  exit(0);
20 }
21 
void repl()
Definition: RInside.cpp:424
int main(int argc, char *argv[])