mirror of
https://github.com/NGSolve/netgen.git
synced 2024-11-12 00:59:16 +05:00
12 lines
197 B
C++
12 lines
197 B
C++
|
|
#include "archive.hpp"
|
|
#include "version.hpp"
|
|
|
|
namespace ngcore
|
|
{
|
|
void VersionInfo :: DoArchive(Archive& ar)
|
|
{
|
|
ar & mayor_ & minor_ & release & patch & git_hash;
|
|
}
|
|
} // namespace ngcore
|