#include "IntObj.h"

ClassImp(IntObj)


 IntObj::IntObj():m_num(0){
}
 IntObj::IntObj(Int_t num):m_num(num){

}

 IntObj::~IntObj(){
}

 Int_t IntObj::Getnum(){
return m_num;
}


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.