#ifndef REFLEX_BUILD
#define REFLEX_BUILD
#endif
#include "Reflex/PropertyList.h"
#include "Reflex/PropertyListImpl.h"
#include "Reflex/Any.h"
static ROOT::Reflex::Any & sEmptyAny() {
static ROOT::Reflex::Any a;
return a;
}
std::ostream & ROOT::Reflex::operator<<( std::ostream & s,
const PropertyList & p ) {
if ( p.fPropertyListImpl ) s << *(p.fPropertyListImpl);
return s;
}
ROOT::Reflex::Any &
ROOT::Reflex::PropertyList::PropertyValue(const std::string & key) const {
if ( fPropertyListImpl ) return fPropertyListImpl->PropertyValue( key );
return sEmptyAny();
}
ROOT page - Class index - Class Hierarchy - 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.