mirror of
https://github.com/NGSolve/netgen.git
synced 2024-12-27 06:10:34 +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
|