cbor / cbor.github.io

cbor.io web site
74 stars 33 forks source link

Yet another one c++ implementation #46

Closed serge-klim closed 5 years ago

serge-klim commented 5 years ago

Not sure if this: https://github.com/serge-klim/bobl C++ implementation would be useful to somebody. It's not exactly coder/decoder per se. It is more type based compile time encoders/decoders generator which uses CBOR as one of underlying protocols and its API is similar to recommended:

encoded = CBOR.encode(data) ➔ data = CBOR.decode(encoded) ( auto encoded = bobl::cbor::encode(data); ➔ auto data = bobl::cbor::decode(begin(encoded), end(encoded));)

cabo commented 5 years ago

This is now mentioned. Please check and suggest possible changes. Thank you for the pointer!