https://github.com/cran/Rcpp
Raw File
Tip revision: a5efaaa5edad752264a962eba18c2fe7b700f19e authored by Dirk Eddelbuettel and Romain Francois on 28 November 2010, 06:24:47 UTC
version 0.8.9
Tip revision: a5efaaa
CppClass-class.Rd
\name{C++Class-class}
\Rdversion{1.1}
\docType{class}
\alias{C++Class-class}
\alias{$,C++Class-method}
\alias{show,C++Class-method}

\title{Reflection information for an internal c++ class}
\description{
Information about an internal c++ class.
}
\section{Objects from the Class}{
	Objects are usually extracted from a \linkS4class{Module}
	using the dollar extractor.
}
\section{Slots}{
  \describe{
  	\item{\code{.Data}:}{mangled name of the class}
    \item{\code{pointer}:}{external pointer to the internal infomation}
    \item{\code{module}:}{external pointer to the module}
    \item{\code{fields}:}{list of \linkS4class{C++Field} objects}
    \item{\code{constructors}:}{list of \linkS4class{C++Constructor} objects}
    \item{\code{methods}:}{list of \linkS4class{C++OverloadedMethods} objects}
    \item{generator}{the generator object for the class}
    \item{docstring}{description of the class}
  }
}
\section{Methods}{
  \describe{
    \item{show}{\code{signature(object = "C++Class")}: prints the class. }
    \item{$}{\code{signature(object = "C++Class")}: ... }
	 }
}
\keyword{classes}

back to top