Skip to content

Commit

Permalink
no export of rcpp function
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMarvin committed Jan 8, 2023
1 parent eb19517 commit 6524c24
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 29 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ LinkingTo: Rcpp
Suggests: testthat, foreign, datasets
Encoding: UTF-8
Language: en-US
RoxygenNote: 7.2.1
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)
Config/testthat/edition: 3
Config/testthat/parallel: true
1 change: 0 additions & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export(convert_to_date)
export(convert_to_datetime)
export(convert_to_time)
export(read.sas)
export(readsas)
import(Rcpp)
importFrom(stringi,stri_encode)
importFrom(utils,download.file)
Expand Down
3 changes: 2 additions & 1 deletion R/RcppExports.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
#' @param empty_to_na logical convert '' to NA_character_
#' @param tempstr filepath used for temp output when uncompressing
#' @import Rcpp
#' @export
#' @keywords internal
#' @noRd
readsas <- function(filePath, debug, selectrows_, selectcols_, empty_to_na, tempstr) {
.Call(`_readsas_readsas`, filePath, debug, selectrows_, selectcols_, empty_to_na, tempstr)
}
Expand Down
24 changes: 0 additions & 24 deletions man/readsas.Rd

This file was deleted.

5 changes: 3 additions & 2 deletions src/readsas.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (C) 2019, 2022 Jan Marvin Garbuszus
* Copyright (C) 2019, 2022-2023 Jan Marvin Garbuszus
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
Expand Down Expand Up @@ -39,7 +39,8 @@ using namespace Rcpp;
//' @param empty_to_na logical convert '' to NA_character_
//' @param tempstr filepath used for temp output when uncompressing
//' @import Rcpp
//' @export
//' @keywords internal
//' @noRd
// [[Rcpp::export]]
Rcpp::List readsas(const char * filePath,
const bool debug,
Expand Down

0 comments on commit 6524c24

Please sign in to comment.