#include "RooFit.h"
#include "RooSharedProperties.h"
#include "RooTrace.h"
#include <iostream>
using std::cout ;
using std::endl ;
ClassImp(RooSharedProperties)
;
RooSharedProperties::RooSharedProperties() 
{
  RooTrace::create(this) ;
} 
RooSharedProperties::RooSharedProperties(const char* uuidstr) : _uuid(uuidstr) 
{
  RooTrace::create(this) ;
} 
RooSharedProperties::~RooSharedProperties() 
{
  RooTrace::destroy(this) ;
} 
Bool_t RooSharedProperties::operator==(const RooSharedProperties& other) 
{
  
  return (_uuid==other._uuid) ;
}
void RooSharedProperties::Print(Option_t* ) const 
{
  cout << "RooSharedProperties(" << this << ") UUID = " << _uuid.AsString() << endl ;
}
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.