10 const std::list<std::shared_ptr<MetadataEntry>>&
getEntries()
const {
return _values; };
11 void AddMetadataEntry(std::shared_ptr<MetadataEntry> entry) { _values.push_back(entry); }
12 void AddMetadataEntry(std::list<std::shared_ptr<MetadataEntry>> entries) { _values.splice(_values.end(), entries); }
15 std::list<std::shared_ptr<MetadataEntry>> _values;
Definition MetadataEntry.h:5
Definition MetadataEntryObject.h:7
bool operator==(const MetadataEntryObject &other)
Definition MetadataEntryObject.cpp:4
MetadataEntryObject(const std::string &name)
Definition MetadataEntryObject.h:9
void AddMetadataEntry(std::shared_ptr< MetadataEntry > entry)
Definition MetadataEntryObject.h:11
void AddMetadataEntry(std::list< std::shared_ptr< MetadataEntry > > entries)
Definition MetadataEntryObject.h:12
const std::list< std::shared_ptr< MetadataEntry > > & getEntries() const
Definition MetadataEntryObject.h:10