aboutsummaryrefslogtreecommitdiff
path: root/src/stable/archive.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/archive.cpp')
-rw-r--r--src/stable/archive.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/stable/archive.cpp b/src/stable/archive.cpp
index 31a4ba7..69447fb 100644
--- a/src/stable/archive.cpp
+++ b/src/stable/archive.cpp
@@ -87,3 +87,13 @@ void Bu::Archive::readID( const void *ptr, uint32_t id )
87 } 87 }
88} 88}
89 89
90void Bu::Archive::setProperty( const Bu::Blob &rKey, const Bu::Variant &rValue )
91{
92 hProps.insert( rKey, rValue );
93}
94
95Bu::Variant Bu::Archive::getProperty( const Bu::Blob &rKey ) const
96{
97 return hProps.get( rKey );
98}
99