Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TRFunctionExport.cxx
Go to the documentation of this file.
1 /*************************************************************************
2  * Copyright (C) 2013-2015, Omar Andres Zapata Mesa *
3  * All rights reserved. *
4  * *
5  * For the licensing terms see $ROOTSYS/LICENSE. *
6  * For the list of contributors see $ROOTSYS/README/CREDITS. *
7  *************************************************************************/
8 #include<TRFunctionExport.h>
9 
10 using namespace ROOT::R;
11 ClassImp(TRFunctionExport);
12 
13 
14 //______________________________________________________________________________
15 TRFunctionExport::TRFunctionExport(): TObject()
16 {
17  f = NULL;
18 }
19 
20 //______________________________________________________________________________
21 TRFunctionExport::TRFunctionExport(const TRFunctionExport &fun): TObject(fun)
22 {
23  f = fun.f;
24 }
25