mirror of
https://github.com/NGSolve/netgen.git
synced 2025-04-08 14:27:27 +05:00
12 lines
209 B
C++
12 lines
209 B
C++
|
|
#include "ngcore.hpp"
|
|
|
|
namespace ngcore
|
|
{
|
|
std::map<std::string, ClassArchiveInfo>& GetArchiveRegister()
|
|
{
|
|
static std::map<std::string, ClassArchiveInfo> type_register;
|
|
return type_register;
|
|
}
|
|
}
|