better typedefs

This commit is contained in:
2024-11-13 11:45:26 +01:00
parent 8ff5cf604f
commit 02bd667376
4 changed files with 37 additions and 37 deletions

View File

@ -7,9 +7,9 @@ using namespace serialize;
class ExampleSet0 : public List {
public:
LE<uint8_t> val0{*this};
LE<uint32_t> val1{*this};
LAE<uint16_t, 3> val2{*this};
LVar<uint8_t> val0{*this};
LVar<uint32_t> val1{*this};
LVec<uint16_t, 3> val2{*this};
};
using namespace returnvalue;