/************************************************************************* * Copyright (C) 2013-2015, Omar Andres Zapata Mesa * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #include using namespace ROOT::R; ClassImp(TRFunctionExport) //______________________________________________________________________________ TRFunctionExport::TRFunctionExport(): TObject() { f = NULL; } //______________________________________________________________________________ TRFunctionExport::TRFunctionExport(const TRFunctionExport &fun): TObject(fun) { f = fun.f; }