12 #ifndef ROOT_R_TRFunctionExport
13 #define ROOT_R_TRFunctionExport
141 class TRFunctionExport:
public TObject {
142 friend class TRInterface;
143 friend SEXP Rcpp::wrap<TRFunctionExport>(
const TRFunctionExport &f);
145 TRInternalFunction *f;
163 TRFunctionExport(
const TRFunctionExport &fun);
169 template<
class T> TRFunctionExport(T fun)
171 f =
new TRInternalFunction(fun);
179 template<
class T>
void SetFunction(T fun)
181 f =
new TRInternalFunction(fun);
184 ClassDef(TRFunctionExport, 0)