refs #364, refs #368 adjusted metadata registration and header files to reflect new classes

This commit is contained in:
Klaus Basan
2015-01-18 21:56:29 +01:00
parent d32e8fd12c
commit 799b640379
9 changed files with 63 additions and 15 deletions

View File

@@ -96,6 +96,12 @@ namespace BlackMisc
void registerMetadata();
}
namespace Simulation
{
//! Register metadata for Simulation
void registerMetadata();
}
//! Register all relevant metadata in BlackMisc
void registerMetadata();
@@ -164,7 +170,7 @@ namespace BlackMisc
//! Own implementation of std::make_unique, a C++14 feature not provided by GCC in C++11 mode
template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args)
std::unique_ptr<T> make_unique(Args &&... args)
{
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}