netgen/libsrc/core/basearchive.cpp

12 lines
209 B
C++
Raw Normal View History

2018-11-29 22:35:30 +05:00
#include "ngcore.hpp"
namespace ngcore
{
std::map<std::string, ClassArchiveInfo>& GetArchiveRegister()
2018-11-29 22:35:30 +05:00
{
static std::map<std::string, ClassArchiveInfo> type_register;
2018-11-29 22:35:30 +05:00
return type_register;
}
}