TuttleOFX
1
|
00001 #include "OfxhAttribute.hpp" 00002 00003 namespace tuttle { 00004 namespace host { 00005 namespace ofx { 00006 namespace attribute { 00007 00008 OfxhAttribute::OfxhAttribute( const property::OfxhSet& properties ) 00009 : _properties( properties ) 00010 { 00011 BOOST_ASSERT( getAttributeType().c_str() ); 00012 } 00013 00014 OfxhAttribute::OfxhAttribute( const OfxhAttributeDescriptor& desc ) 00015 : _properties( desc.getProperties() ) 00016 { 00017 BOOST_ASSERT( getAttributeType().c_str() ); 00018 } 00019 00020 OfxhAttribute::~OfxhAttribute() {} 00021 00022 } 00023 } 00024 } 00025 }