#include "genetic/phenotype.h" Genetic::Phenotype::Phenotype() : tCreated( 0 ), uId( 0 ), bActive( false ) { } Genetic::Phenotype::~Phenotype() { } bool Genetic::Phenotype::hasProperty( const Bu::String &sKey ) const { return hProp.has( sKey ); } Bu::Variant Genetic::Phenotype::getProperty( const Bu::String &sKey ) const { return hProp.get( sKey ); } void Genetic::Phenotype::setProperty( const Bu::String &sKey, Bu::Variant vValue ) { hProp.insert( sKey, vValue ); }