# Load the shared object
useDynLib(reglogit)

# Export all names
exportPattern(".")

# Import all packages listed as Imports or Depends
import(
  methods,
  mvtnorm,
  boot,
  Matrix
)

# S3
S3method(predict, reglogit)
S3method(predict, regmlogit)

## for CHECK
importFrom("stats", "dlogis", "plogis", "rgamma", "rnorm", "runif")
