[Rcpp-commits] r3778 - pkg/RcppBDT

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Sep 22 20:21:26 CEST 2012


Author: edd
Date: 2012-09-22 20:21:26 +0200 (Sat, 22 Sep 2012)
New Revision: 3778

Modified:
   pkg/RcppBDT/NAMESPACE
Log:
minor edits with added comments


Modified: pkg/RcppBDT/NAMESPACE
===================================================================
--- pkg/RcppBDT/NAMESPACE	2012-09-22 17:10:39 UTC (rev 3777)
+++ pkg/RcppBDT/NAMESPACE	2012-09-22 18:21:26 UTC (rev 3778)
@@ -1,6 +1,9 @@
-import(Rcpp,methods)
-useDynLib(RcppBDT)
 
-exportPattern("^[[:alpha:]]+")
-exportMethods( "format", "show" )
+import(Rcpp,methods)                    # packages we require
 
+useDynLib(RcppBDT)                      # this package's shared library
+
+exportPattern("^[[:alpha:]]+")          # export all identifier (eg the convenience function and consts)
+exportMethods("format",                 # all modules have format and show methods defined
+              "show")
+



More information about the Rcpp-commits mailing list