mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
37 lines
1.3 KiB
C++
37 lines
1.3 KiB
C++
|
|
#include "archive.hpp"
|
|
#include "version.hpp"
|
|
|
|
#ifndef WIN32
|
|
#include <cxxabi.h>
|
|
#endif
|
|
|
|
namespace ngcore
|
|
{
|
|
// clang-tidy should ignore this static object
|
|
static std::unique_ptr<std::map<std::string, detail::ClassArchiveInfo>> type_register; // NOLINT
|
|
const detail::ClassArchiveInfo& Archive :: GetArchiveRegister(const std::string& classname)
|
|
{
|
|
if(type_register == nullptr) type_register =
|
|
std::make_unique<std::map<std::string, detail::ClassArchiveInfo>>();
|
|
return (*type_register)[classname];
|
|
}
|
|
void Archive :: SetArchiveRegister(const std::string& classname, const detail::ClassArchiveInfo& info)
|
|
{
|
|
if(type_register == nullptr) type_register =
|
|
std::make_unique<std::map<std::string, detail::ClassArchiveInfo>>();
|
|
(*type_register)[classname] = info;
|
|
}
|
|
void Archive :: RemoveArchiveRegister(const std::string& classname)
|
|
{
|
|
if(IsRegistered(classname))
|
|
type_register->erase(classname);
|
|
}
|
|
bool Archive :: IsRegistered(const std::string& classname)
|
|
{
|
|
if(type_register == nullptr) type_register =
|
|
std::make_unique<std::map<std::string, detail::ClassArchiveInfo>>();
|
|
return type_register->count(classname) != 0;
|
|
}
|
|
} // namespace ngcore
|