mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-13 17:48:34 +05:00
8e29d38fc1
mult. inheritance and virtual base classes)
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;
|
|
}
|
|
}
|