Aqeel Raza
Aqeel Raza

Reputation: 1839

Serialization Library for C++

I am writing a client side library and I have to send C++ objects and primitive data types through socket. I have come across Boost and ProtoBuf libraries for serialization but we have to define message format to send data. I am trying to find some library in which I don't have to write message formats and able to send primitive data types and objects. Is there any library for c/c++ out there? Thanks

Upvotes: 0

Views: 469

Answers (1)

Yousf
Yousf

Reputation: 3997

You can try Remote Call Framework OR Protobuf-Remote Both of them support primitive (and more) types without modifications. You can support more types by doing some configurations.

Upvotes: 1

Related Questions