- primo commit.
This commit is contained in:
SaraP
2021-09-07 16:50:23 +02:00
parent a5a65b4c8d
commit f8c998f6ff
633 changed files with 108631 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include "lib3mf_consumer.hpp"
#include "lib3mf_interfaceexception.hpp"
#include "Model/Classes/NMR_KeyStoreConsumer.h"
using namespace Lib3MF::Impl;
Lib3MF::Impl::CConsumer::CConsumer(NMR::PKeyStoreConsumer const & consumer) {
m_Consumer = consumer;
}
std::string Lib3MF::Impl::CConsumer::GetConsumerID() {
return m_Consumer->getConsumerID();
}
std::string Lib3MF::Impl::CConsumer::GetKeyID() {
return m_Consumer->getKeyID();
}
std::string Lib3MF::Impl::CConsumer::GetKeyValue() {
return m_Consumer->getKeyValue();
}