[Rcpp-commits] r2506 - pkg/Rcpp/man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Nov 23 15:53:01 CET 2010


Author: romain
Date: 2010-11-23 15:53:01 +0100 (Tue, 23 Nov 2010)
New Revision: 2506

Modified:
   pkg/Rcpp/man/CppClass-class.Rd
   pkg/Rcpp/man/CppClassRepresentation-class.Rd
   pkg/Rcpp/man/CppFunction-class.Rd
Log:
making R CMD check happy

Modified: pkg/Rcpp/man/CppClass-class.Rd
===================================================================
--- pkg/Rcpp/man/CppClass-class.Rd	2010-11-23 14:34:54 UTC (rev 2505)
+++ pkg/Rcpp/man/CppClass-class.Rd	2010-11-23 14:53:01 UTC (rev 2506)
@@ -19,7 +19,8 @@
     \item{\code{pointer}:}{external pointer to the internal infomation}
     \item{\code{module}:}{external pointer to the module}
     \item{\code{fields}:}{list of \linkS4class{C++Field} objects}
-    \item{\code{methods}:}{list of \linkS4class{C++Method} objects}
+    \item{\code{constructors}:}{list of \linkS4class{C++Constructor} objects}
+    \item{\code{methods}:}{list of \linkS4class{C++OverloadedMethods} objects}
     \item{generator}{the generator object for the class}
   }
 }

Modified: pkg/Rcpp/man/CppClassRepresentation-class.Rd
===================================================================
--- pkg/Rcpp/man/CppClassRepresentation-class.Rd	2010-11-23 14:34:54 UTC (rev 2505)
+++ pkg/Rcpp/man/CppClassRepresentation-class.Rd	2010-11-23 14:53:01 UTC (rev 2506)
@@ -12,6 +12,7 @@
     \item{\code{generator}:}{Object of class \code{"refObjectGenerator"} ~~ }
     \item{\code{cpp_fields}:}{Object of class \code{"list"} ~~ }
     \item{\code{cpp_methods}:}{Object of class \code{"list"} ~~ }
+    \item{\code{cpp_constructor}:}{Object of class \code{"list"} ~~ }
     \item{\code{slots}:}{Object of class \code{"list"} ~~ }
     \item{\code{contains}:}{Object of class \code{"list"} ~~ }
     \item{\code{virtual}:}{Object of class \code{"logical"} ~~ }

Modified: pkg/Rcpp/man/CppFunction-class.Rd
===================================================================
--- pkg/Rcpp/man/CppFunction-class.Rd	2010-11-23 14:34:54 UTC (rev 2505)
+++ pkg/Rcpp/man/CppFunction-class.Rd	2010-11-23 14:53:01 UTC (rev 2506)
@@ -16,6 +16,8 @@
   \describe{
     \item{\code{.Data}:}{R function that calls back to the internal function}
     \item{\code{pointer}:}{External pointer to a C++ object poiting to the function}
+    \item{\code{docstring}:}{Short documentation for the function}
+    \item{\code{signature}:}{C++ signature}
   }
 }
 \section{Extends}{



More information about the Rcpp-commits mailing list