Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update Rcpp
  • Loading branch information
krlmlr committed Sep 17, 2016
1 parent fe5e322 commit 70b32af
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion R/RcppExports.R
@@ -1,4 +1,4 @@
# This file was generated by Rcpp::compileAttributes
# Generated by using Rcpp::compileAttributes() -> do not edit by hand
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

connection_create <- function(host, user, password, db, port, unix_socket, client_flag, groups, default_file, ssl_key, ssl_cert, ssl_ca, ssl_capath, ssl_cipher) {
Expand Down
114 changes: 57 additions & 57 deletions src/RcppExports.cpp
@@ -1,4 +1,4 @@
// This file was generated by Rcpp::compileAttributes
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393

#include "RMySQL_types.h"
Expand All @@ -10,8 +10,8 @@ using namespace Rcpp;
XPtr<MyConnectionPtr> connection_create(const Rcpp::Nullable<std::string>& host, const Rcpp::Nullable<std::string>& user, const Rcpp::Nullable<std::string>& password, const Rcpp::Nullable<std::string>& db, unsigned int port, const Rcpp::Nullable<std::string>& unix_socket, unsigned long client_flag, const Rcpp::Nullable<std::string>& groups, const Rcpp::Nullable<std::string>& default_file, const Rcpp::Nullable<std::string>& ssl_key, const Rcpp::Nullable<std::string>& ssl_cert, const Rcpp::Nullable<std::string>& ssl_ca, const Rcpp::Nullable<std::string>& ssl_capath, const Rcpp::Nullable<std::string>& ssl_cipher);
RcppExport SEXP RMySQL_connection_create(SEXP hostSEXP, SEXP userSEXP, SEXP passwordSEXP, SEXP dbSEXP, SEXP portSEXP, SEXP unix_socketSEXP, SEXP client_flagSEXP, SEXP groupsSEXP, SEXP default_fileSEXP, SEXP ssl_keySEXP, SEXP ssl_certSEXP, SEXP ssl_caSEXP, SEXP ssl_capathSEXP, SEXP ssl_cipherSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< const Rcpp::Nullable<std::string>& >::type host(hostSEXP);
Rcpp::traits::input_parameter< const Rcpp::Nullable<std::string>& >::type user(userSEXP);
Rcpp::traits::input_parameter< const Rcpp::Nullable<std::string>& >::type password(passwordSEXP);
Expand All @@ -26,15 +26,15 @@ BEGIN_RCPP
Rcpp::traits::input_parameter< const Rcpp::Nullable<std::string>& >::type ssl_ca(ssl_caSEXP);
Rcpp::traits::input_parameter< const Rcpp::Nullable<std::string>& >::type ssl_capath(ssl_capathSEXP);
Rcpp::traits::input_parameter< const Rcpp::Nullable<std::string>& >::type ssl_cipher(ssl_cipherSEXP);
__result = Rcpp::wrap(connection_create(host, user, password, db, port, unix_socket, client_flag, groups, default_file, ssl_key, ssl_cert, ssl_ca, ssl_capath, ssl_cipher));
return __result;
rcpp_result_gen = Rcpp::wrap(connection_create(host, user, password, db, port, unix_socket, client_flag, groups, default_file, ssl_key, ssl_cert, ssl_ca, ssl_capath, ssl_cipher));
return rcpp_result_gen;
END_RCPP
}
// connection_release
void connection_release(XPtr<MyConnectionPtr> con);
RcppExport SEXP RMySQL_connection_release(SEXP conSEXP) {
BEGIN_RCPP
Rcpp::RNGScope __rngScope;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyConnectionPtr> >::type con(conSEXP);
connection_release(con);
return R_NilValue;
Expand All @@ -44,88 +44,88 @@ END_RCPP
List connection_info(XPtr<MyConnectionPtr> con);
RcppExport SEXP RMySQL_connection_info(SEXP conSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyConnectionPtr> >::type con(conSEXP);
__result = Rcpp::wrap(connection_info(con));
return __result;
rcpp_result_gen = Rcpp::wrap(connection_info(con));
return rcpp_result_gen;
END_RCPP
}
// connection_valid
bool connection_valid(XPtr<MyConnectionPtr> con);
RcppExport SEXP RMySQL_connection_valid(SEXP conSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyConnectionPtr> >::type con(conSEXP);
__result = Rcpp::wrap(connection_valid(con));
return __result;
rcpp_result_gen = Rcpp::wrap(connection_valid(con));
return rcpp_result_gen;
END_RCPP
}
// connection_quote_string
CharacterVector connection_quote_string(XPtr<MyConnectionPtr> con, CharacterVector input);
RcppExport SEXP RMySQL_connection_quote_string(SEXP conSEXP, SEXP inputSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyConnectionPtr> >::type con(conSEXP);
Rcpp::traits::input_parameter< CharacterVector >::type input(inputSEXP);
__result = Rcpp::wrap(connection_quote_string(con, input));
return __result;
rcpp_result_gen = Rcpp::wrap(connection_quote_string(con, input));
return rcpp_result_gen;
END_RCPP
}
// connection_exec
bool connection_exec(XPtr<MyConnectionPtr> con, std::string sql);
RcppExport SEXP RMySQL_connection_exec(SEXP conSEXP, SEXP sqlSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyConnectionPtr> >::type con(conSEXP);
Rcpp::traits::input_parameter< std::string >::type sql(sqlSEXP);
__result = Rcpp::wrap(connection_exec(con, sql));
return __result;
rcpp_result_gen = Rcpp::wrap(connection_exec(con, sql));
return rcpp_result_gen;
END_RCPP
}
// result_create
XPtr<MyResult> result_create(XPtr<MyConnectionPtr> con, std::string sql);
RcppExport SEXP RMySQL_result_create(SEXP conSEXP, SEXP sqlSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyConnectionPtr> >::type con(conSEXP);
Rcpp::traits::input_parameter< std::string >::type sql(sqlSEXP);
__result = Rcpp::wrap(result_create(con, sql));
return __result;
rcpp_result_gen = Rcpp::wrap(result_create(con, sql));
return rcpp_result_gen;
END_RCPP
}
// result_column_info
List result_column_info(XPtr<MyResult> rs);
RcppExport SEXP RMySQL_result_column_info(SEXP rsSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
__result = Rcpp::wrap(result_column_info(rs));
return __result;
rcpp_result_gen = Rcpp::wrap(result_column_info(rs));
return rcpp_result_gen;
END_RCPP
}
// result_fetch
List result_fetch(XPtr<MyResult> rs, int n);
RcppExport SEXP RMySQL_result_fetch(SEXP rsSEXP, SEXP nSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
Rcpp::traits::input_parameter< int >::type n(nSEXP);
__result = Rcpp::wrap(result_fetch(rs, n));
return __result;
rcpp_result_gen = Rcpp::wrap(result_fetch(rs, n));
return rcpp_result_gen;
END_RCPP
}
// result_bind
void result_bind(XPtr<MyResult> rs, List params);
RcppExport SEXP RMySQL_result_bind(SEXP rsSEXP, SEXP paramsSEXP) {
BEGIN_RCPP
Rcpp::RNGScope __rngScope;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
Rcpp::traits::input_parameter< List >::type params(paramsSEXP);
result_bind(rs, params);
Expand All @@ -136,7 +136,7 @@ END_RCPP
void result_bind_rows(XPtr<MyResult> rs, List params);
RcppExport SEXP RMySQL_result_bind_rows(SEXP rsSEXP, SEXP paramsSEXP) {
BEGIN_RCPP
Rcpp::RNGScope __rngScope;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
Rcpp::traits::input_parameter< List >::type params(paramsSEXP);
result_bind_rows(rs, params);
Expand All @@ -147,7 +147,7 @@ END_RCPP
void result_release(XPtr<MyResult> rs);
RcppExport SEXP RMySQL_result_release(SEXP rsSEXP) {
BEGIN_RCPP
Rcpp::RNGScope __rngScope;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
result_release(rs);
return R_NilValue;
Expand All @@ -157,53 +157,53 @@ END_RCPP
int result_rows_affected(XPtr<MyResult> rs);
RcppExport SEXP RMySQL_result_rows_affected(SEXP rsSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
__result = Rcpp::wrap(result_rows_affected(rs));
return __result;
rcpp_result_gen = Rcpp::wrap(result_rows_affected(rs));
return rcpp_result_gen;
END_RCPP
}
// result_rows_fetched
int result_rows_fetched(XPtr<MyResult> rs);
RcppExport SEXP RMySQL_result_rows_fetched(SEXP rsSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
__result = Rcpp::wrap(result_rows_fetched(rs));
return __result;
rcpp_result_gen = Rcpp::wrap(result_rows_fetched(rs));
return rcpp_result_gen;
END_RCPP
}
// result_complete
bool result_complete(XPtr<MyResult> rs);
RcppExport SEXP RMySQL_result_complete(SEXP rsSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
__result = Rcpp::wrap(result_complete(rs));
return __result;
rcpp_result_gen = Rcpp::wrap(result_complete(rs));
return rcpp_result_gen;
END_RCPP
}
// result_active
bool result_active(XPtr<MyResult> rs);
RcppExport SEXP RMySQL_result_active(SEXP rsSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< XPtr<MyResult> >::type rs(rsSEXP);
__result = Rcpp::wrap(result_active(rs));
return __result;
rcpp_result_gen = Rcpp::wrap(result_active(rs));
return rcpp_result_gen;
END_RCPP
}
// version
IntegerVector version();
RcppExport SEXP RMySQL_version() {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
__result = Rcpp::wrap(version());
return __result;
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = Rcpp::wrap(version());
return rcpp_result_gen;
END_RCPP
}

0 comments on commit 70b32af

Please sign in to comment.