mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
6451750890
Use the same function to load and save to have single place with field order definition. Use concepts for overload over different types.
11 lines
193 B
C++
11 lines
193 B
C++
#ifndef OPENMW_COMPONENTS_ESM_DECOMPOSE_H
|
|
#define OPENMW_COMPONENTS_ESM_DECOMPOSE_H
|
|
|
|
namespace ESM
|
|
{
|
|
template <class T>
|
|
void decompose(T&& value, const auto& apply) = delete;
|
|
}
|
|
|
|
#endif
|