I have a class hierarchy of Protobufs that are serialized and deserialized. Now in run-time I'd like one of these classes to contains an instance of my class which is implemented by me in C++ and contains some kind of decoration and caches I find out in run-time.
Is there a way to implement this with just the normal protobuf compiler?
Two options I though of is using an index with an integer id for every instance of the class. I'd like to avoid this due to the performance hit.
Another option is to mangle the generated source files with an external script. This is rather ugly and I'd also like to avoid it if possible.