Top "Protobuf-c" questions

Protocol buffers are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data

Can protobuf service method return primitive type?

I'm trying to use Google protobuf and i 'm having the next descriptions: message.proto file: message Request { required int32 …

protocol-buffers rpc protobuf-c
Does Protocol Buffers support move constructor

I've checked the move constructor spec and a Message constructor source and didn't find one. If there's not, does anyone …

c++ protocol-buffers protobuf-c
How to add vector to repeated field protobuf c++

I have the following protobuf message : message gen_Journey { repeated gen_ProposedSegment proposedSegments = 1; } the generated cpp is the following // repeated .…

c++ protobuf-c
Deep-copying with ProtoBuf in C/C++

Say I had an array of pointers, each of which points to structs which may once again have pointers to …

c++ c protocol-buffers protobuf-c
Compilation error in compiling Protobufs in Java using SBT build tool

I am using the Play framework (which uses SBT build tool) with Java where I need to consume a Protobuf. …

java protocol-buffers protoc protobuf-c
Unable to get IntelliJ to recognize proto compiled Java class files

We have a build.xml in our project, but IntelliJ is unable to import from it. I get a: Cannot …

eclipse intellij-idea protobuf-c
fatal error: google/protobuf/port_def.inc: No such file or directory #include <google/protobuf/port_def.inc>

I have windows. And I want to create an C++ op using library tensorflow. From this site https://www.tensorflow.…

c++ windows tensorflow g++ protobuf-c