[Rcpp-commits] r1737 - pkg/Rcpp/src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Jun 25 17:02:14 CEST 2010


Author: romain
Date: 2010-06-25 17:02:14 +0200 (Fri, 25 Jun 2010)
New Revision: 1737

Modified:
   pkg/Rcpp/src/RcppDate.cpp
   pkg/Rcpp/src/RcppDateVector.cpp
   pkg/Rcpp/src/RcppDatetime.cpp
   pkg/Rcpp/src/RcppDatetimeVector.cpp
   pkg/Rcpp/src/RcppList.cpp
   pkg/Rcpp/src/RcppNumList.cpp
   pkg/Rcpp/src/RcppParams.cpp
   pkg/Rcpp/src/RcppStringVector.cpp
   pkg/Rcpp/src/RcppStringVectorView.cpp
Log:
moving the classic api in its own directory (step 5 of 6) ;-)

Modified: pkg/Rcpp/src/RcppDate.cpp
===================================================================
--- pkg/Rcpp/src/RcppDate.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppDate.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -21,7 +21,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppDate.h>
+#include <classic/RcppDate.h>
 
 const int RcppDate::Jan1970Offset = 2440588;    // Offset from R date representation to Julian day number.
 const int RcppDate::QLtoJan1970Offset = 25569;  // Offset between R / Unix epoch date and the QL base date

Modified: pkg/Rcpp/src/RcppDateVector.cpp
===================================================================
--- pkg/Rcpp/src/RcppDateVector.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppDateVector.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -21,7 +21,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppDateVector.h>
+#include <classic/RcppDateVector.h>
 
 RcppDateVector::RcppDateVector(SEXP vec) {
     int i;

Modified: pkg/Rcpp/src/RcppDatetime.cpp
===================================================================
--- pkg/Rcpp/src/RcppDatetime.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppDatetime.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -20,7 +20,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppDatetime.h>
+#include <classic/RcppDatetime.h>
 #include <time.h> // for strftime
 #include <Rmath.h> // for Rf_fround
 

Modified: pkg/Rcpp/src/RcppDatetimeVector.cpp
===================================================================
--- pkg/Rcpp/src/RcppDatetimeVector.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppDatetimeVector.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -20,7 +20,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppDatetimeVector.h>
+#include <classic/RcppDatetimeVector.h>
 
 RcppDatetimeVector::RcppDatetimeVector(SEXP vec) {
     int i;

Modified: pkg/Rcpp/src/RcppList.cpp
===================================================================
--- pkg/Rcpp/src/RcppList.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppList.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -19,7 +19,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppList.h>
+#include <classic/RcppList.h>
 
 RcppList::RcppList(void) : listArg(R_NilValue), 
 			   listSize(0), 

Modified: pkg/Rcpp/src/RcppNumList.cpp
===================================================================
--- pkg/Rcpp/src/RcppNumList.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppNumList.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -20,7 +20,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppNumList.h>
+#include <classic/RcppNumList.h>
 
 RcppNumList::RcppNumList(SEXP theList) {
     if (!Rf_isNewList(theList))

Modified: pkg/Rcpp/src/RcppParams.cpp
===================================================================
--- pkg/Rcpp/src/RcppParams.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppParams.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -20,7 +20,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppParams.h>
+#include <classic/RcppParams.h>
 
 RcppParams::RcppParams(SEXP params) {
     if (!Rf_isNewList(params))

Modified: pkg/Rcpp/src/RcppStringVector.cpp
===================================================================
--- pkg/Rcpp/src/RcppStringVector.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppStringVector.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -20,7 +20,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppStringVector.h>
+#include <classic/RcppStringVector.h>
 
 RcppStringVector::RcppStringVector(SEXP vec) {
     int i;

Modified: pkg/Rcpp/src/RcppStringVectorView.cpp
===================================================================
--- pkg/Rcpp/src/RcppStringVectorView.cpp	2010-06-25 15:01:56 UTC (rev 1736)
+++ pkg/Rcpp/src/RcppStringVectorView.cpp	2010-06-25 15:02:14 UTC (rev 1737)
@@ -20,7 +20,7 @@
 // You should have received a copy of the GNU General Public License
 // along with Rcpp.  If not, see <http://www.gnu.org/licenses/>.
 
-#include <RcppStringVectorView.h>
+#include <classic/RcppStringVectorView.h>
 
 RcppStringVectorView::RcppStringVectorView(SEXP vec) {
     if (Rf_isMatrix(vec) || Rf_isLogical(vec))



More information about the Rcpp-commits mailing list