Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TRObject.cxx
Go to the documentation of this file.
1 /*************************************************************************
2  * Copyright (C) 2013-2014, 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<TRObject.h>
9 #include<vector>
10 
11 using namespace ROOT::R;
12 ClassImp(TRObject);
13 
14 //______________________________________________________________________________
15 TRObject::TRObject(SEXP robj): TObject(), fObj(robj), fStatus(kTRUE) { }
16 
17 
18 //______________________________________________________________________________
19 void TRObject::operator=(SEXP robj)
20 {
21  fStatus = kTRUE;
22  fObj = robj;
23 }
24 
25 //______________________________________________________________________________
26 TRObject::TRObject(SEXP robj, Bool_t status): fObj(robj), fStatus(status) {}