Move common structureddatadef classes to objcommon

This commit is contained in:
Jan
2022-03-12 14:02:52 +01:00
parent dff7912dbc
commit c38367d55b
12 changed files with 4 additions and 4 deletions

View File

@ -0,0 +1,13 @@
#include "CommonStructuredDataDef.h"
CommonStructuredDataDef::CommonStructuredDataDef()
: CommonStructuredDataDef(0)
{
}
CommonStructuredDataDef::CommonStructuredDataDef(const int version)
: m_version(version),
m_checksum(0u),
m_size_in_byte(0u)
{
}