Re: [R-pkg-devel] NAMESPACE and S4 classes

2015-11-06 Thread Uwe Ligges
On 06.11.2015 00:52, Boylan, Ross wrote: I am trying to update a package from 2010 to the new standards, including adding a NAMESPACE file. The package has S4 classes, and I'm having some trouble interpreting the manual. Suppose I have setClass("MyClass", .) MyClass <- function(a, b, c

[R-pkg-devel] NAMESPACE and S4 classes

2015-11-06 Thread Boylan, Ross
I am trying to update a package from 2010 to the new standards, including adding a NAMESPACE file. The package has S4 classes, and I'm having some trouble interpreting the manual. Suppose I have setClass("MyClass", .) MyClass <- function(a, b, c) {...} # constructor and various methods fo