onto / protobuf-qt

Generate Qt/QML flavored sources from Protocol Buffers .proto files
MIT License
30 stars 10 forks source link

wrapper for repeated fields and QQmlListProperty #5

Open ghost opened 4 years ago

ghost commented 4 years ago

hello, first thanks for the nice library i was looking for it.

have a question the wrapper for the repeated fields is working?

i have a .proto with message repeated field but the wrapped to it is not generated

message Permision {

}

message User { int id = 0;
repeated Permision permissions = 1; }

but the generated wrapper don't have the QQmlListProperty, is not yet implemented or i doing some wrong?

thanks !!!