1export(mle) # exporting methods implicitly exports the generics
2
3importFrom("grDevices", dev.flush, dev.hold)
4importFrom("graphics", abline, lines, par)
5importFrom("methods", new, show, slotNames)
6importFrom("stats", approx, optim, pchisq, predict, qchisq, qnorm, spline)
7## For these, we define methods or (AIC, BIC, nobs) an implicit generic:
8importFrom("stats",
9	   AIC, BIC, coef, confint, logLik,
10	   na.omit, nobs, profile, update, vcov)
11
12## S4
13exportClasses(mle, profile.mle, summary.mle)
14## All methods for imported generics:
15exportMethods(coef, confint, logLik, nobs, plot, profile, summary, show, update, vcov)
16## implicit generics do not have any methods here
17export(AIC, BIC)
18