From 668737effd601778fba74edec14d22dd5b87457a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 19 Apr 2010 15:16:53 +0000 Subject: CacheStoreMyriad is written, it's pretty much a copy of CacheStoreNids since Nids and Myriad pretty much share an API. However, there seems to be a bug in Myriad when a Myriad file is created and filled with data immediately, the header stream is mis-linking one of the blocks again. --- src/tafproperty.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/tafproperty.cpp') diff --git a/src/tafproperty.cpp b/src/tafproperty.cpp index 4c7ab28..c847344 100644 --- a/src/tafproperty.cpp +++ b/src/tafproperty.cpp @@ -7,6 +7,13 @@ #include "bu/tafproperty.h" +Bu::TafProperty::TafProperty( const Bu::TafProperty &rSrc ) : + TafNode( typeProperty ), + sName( rSrc.sName ), + sValue( rSrc.sValue ) +{ +} + Bu::TafProperty::TafProperty( const Bu::FString &sName, const Bu::FString &sValue ) : TafNode( typeProperty ), sName( sName ), -- cgit v1.2.3