macros rename

This commit is contained in:
2022-05-11 16:49:33 +03:00
parent fa19ad1093
commit 0897a8369f
20 changed files with 76 additions and 76 deletions

View File

@@ -66,11 +66,11 @@ public:
};
BINARY_STREAM_STORE (PIIntrospectionContainers::TypeInfo) {
BINARY_STREAM_WRITE(PIIntrospectionContainers::TypeInfo) {
s << PIByteArray::RawData(&v, sizeof(PIIntrospectionContainers::_Type)) << v.name;
return s;
}
BINARY_STREAM_RESTORE(PIIntrospectionContainers::TypeInfo) {
BINARY_STREAM_READ(PIIntrospectionContainers::TypeInfo) {
s >> PIByteArray::RawData(&v, sizeof(PIIntrospectionContainers::_Type)) >> v.name;
return s;
}