diff --git a/R/RcppExports.R b/R/RcppExports.R deleted file mode 100644 index f932e1d..0000000 --- a/R/RcppExports.R +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by Rcpp::compileAttributes -# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 - -rcpp_hello <- function() { - .Call('decon_rcpp_hello', PACKAGE = 'decon') -} - diff --git a/R/dome.R b/R/dome.R deleted file mode 100644 index 147c084..0000000 --- a/R/dome.R +++ /dev/null @@ -1,3 +0,0 @@ -dome <- function(a,b){ - a == b -} diff --git a/R/hello.R b/R/hello.R deleted file mode 100644 index 26b1f90..0000000 --- a/R/hello.R +++ /dev/null @@ -1,18 +0,0 @@ -# Hello, world! -# -# This is an example function named 'hello' -# which prints 'Hello, world!'. -# -# You can learn more about package authoring with RStudio at: -# -# http://r-pkgs.had.co.nz/ -# -# Some useful keyboard shortcuts for package authoring: -# -# Build and Reload Package: 'Cmd + Shift + B' -# Check Package: 'Cmd + Shift + E' -# Test Package: 'Cmd + Shift + T' - -hello <- function() { - print("Hello, world!") -} diff --git a/src/RcppExports.cpp b/src/RcppExports.cpp deleted file mode 100644 index 2d8bdb5..0000000 --- a/src/RcppExports.cpp +++ /dev/null @@ -1,17 +0,0 @@ -// This file was generated by Rcpp::compileAttributes -// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 - -#include - -using namespace Rcpp; - -// rcpp_hello -List rcpp_hello(); -RcppExport SEXP decon_rcpp_hello() { -BEGIN_RCPP - Rcpp::RObject __result; - Rcpp::RNGScope __rngScope; - __result = Rcpp::wrap(rcpp_hello()); - return __result; -END_RCPP -} diff --git a/src/rcpp_hello.cpp b/src/rcpp_hello.cpp deleted file mode 100644 index 487a9b2..0000000 --- a/src/rcpp_hello.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include -using namespace Rcpp; - -// This is a simple function using Rcpp that creates an R list -// containing a character vector and a numeric vector. -// -// Learn more about how to use Rcpp at: -// -// http://www.rcpp.org/ -// http://adv-r.had.co.nz/Rcpp.html -// -// and browse examples of code using Rcpp at: -// -// http://gallery.rcpp.org/ -// - -// [[Rcpp::export]] -List rcpp_hello() { - CharacterVector x = CharacterVector::create("foo", "bar"); - NumericVector y = NumericVector::create(0.0, 1.0); - List z = List::create(x, y); - return z; -}