[Rcpp-commits] r186 - in pkg: . man
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Fri Dec 11 22:08:01 CET 2009
Author: edd
Date: 2009-12-11 22:08:01 +0100 (Fri, 11 Dec 2009)
New Revision: 186
Added:
pkg/man/internals.Rd
Modified:
pkg/DESCRIPTION
Log:
two more changes related to the import from package import:
- declare a Depends: on methods, and
- hide a few method-related functions as internal to not require explicit help
Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION 2009-12-11 20:23:46 UTC (rev 185)
+++ pkg/DESCRIPTION 2009-12-11 21:08:01 UTC (rev 186)
@@ -10,7 +10,7 @@
for R types real, integer, character, vector, matrix, Date, datetime (i.e.
POSIXct) at microsecond resolution, data frame, and function. It also
supports calling R functions from C++. Several examples are included.
-Depends: R (>= 2.0.0)
+Depends: R (>= 2.0.0), methods
SystemRequirements: None
URL: http://dirk.eddelbuettel.com/code/rcpp.html
License: LGPL (>= 2.1)
Added: pkg/man/internals.Rd
===================================================================
--- pkg/man/internals.Rd (rev 0)
+++ pkg/man/internals.Rd 2009-12-11 21:08:01 UTC (rev 186)
@@ -0,0 +1,15 @@
+\name{internals}
+\alias{internals}
+
+\alias{setCMethod,character,list,list-method}
+\alias{setCMethod,character,character,character-method}
+
+\title{ Internals }
+
+\description{
+ Aliases required for 'R CMD check' but those noone will ever search for.
+ Here to prevent the mess of the index. The corresponding items have help
+ aliases without method signature!
+}
+
+\keyword{internal}
More information about the Rcpp-commits
mailing list