An open API service indexing awesome lists of open source software.

https://github.com/andreicherniaev/overload_qdatastream_example

How to overload the QDataStream &operator << and >> Example
https://github.com/andreicherniaev/overload_qdatastream_example

deserialization example qt serialization

Last synced: 10 months ago
JSON representation

How to overload the QDataStream &operator << and >> Example

Awesome Lists containing this project

README

          

Example How to overload the QDataStream &operator << and >>. If you have class with private field and you want to get access to it via operator overloading then see unique_ptr_operator_overloading_unique_ptr [example](https://github.com/AndreiCherniaev/unique_ptr_operator_overloading_unique_ptr).
## How to build
```
git clone https://github.com/AndreiCherniaev/overload_QDataStream_example
cd overload_QDataStream_example
mkdir build/
cmake -S src/ -B build/
cmake --build build/ --parallel
```