diff options
author | Mike Buland <eichlan@xagasoft.com> | 2010-04-19 15:16:53 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2010-04-19 15:16:53 +0000 |
commit | 668737effd601778fba74edec14d22dd5b87457a (patch) | |
tree | 9ca6b88518cea29244dc92a219c20060cff8d593 /src/tafproperty.cpp | |
parent | fc2943ed980306244749d8d13796eaff690917b6 (diff) | |
download | libbu++-668737effd601778fba74edec14d22dd5b87457a.tar.gz libbu++-668737effd601778fba74edec14d22dd5b87457a.tar.bz2 libbu++-668737effd601778fba74edec14d22dd5b87457a.tar.xz libbu++-668737effd601778fba74edec14d22dd5b87457a.zip |
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.
Diffstat (limited to 'src/tafproperty.cpp')
-rw-r--r-- | src/tafproperty.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
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 @@ | |||
7 | 7 | ||
8 | #include "bu/tafproperty.h" | 8 | #include "bu/tafproperty.h" |
9 | 9 | ||
10 | Bu::TafProperty::TafProperty( const Bu::TafProperty &rSrc ) : | ||
11 | TafNode( typeProperty ), | ||
12 | sName( rSrc.sName ), | ||
13 | sValue( rSrc.sValue ) | ||
14 | { | ||
15 | } | ||
16 | |||
10 | Bu::TafProperty::TafProperty( const Bu::FString &sName, const Bu::FString &sValue ) : | 17 | Bu::TafProperty::TafProperty( const Bu::FString &sName, const Bu::FString &sValue ) : |
11 | TafNode( typeProperty ), | 18 | TafNode( typeProperty ), |
12 | sName( sName ), | 19 | sName( sName ), |