createRLibrary

This function adds the boilerplate needed inside a shared library that will be called from R.

string
createRLibrary
(
string name
)

Parameters

name
Type: string

The name of the library

R requires the name of the library to start with lib.

Examples

Adds boilerplate to create a library named libfoo.

createRLibrary("foo");

Meta