diff options
| author | Jeff Carr <[email protected]> | 2025-01-08 20:52:47 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-08 20:52:47 -0600 |
| commit | ad67a6f42da6e712431fa0929ad833c9cd485041 (patch) | |
| tree | 2539470d5afb93f908913755cc09ca2e177842c6 /auto.proto | |
| parent | d850ec82c849d9226a9558e46ad4ad226c91a16e (diff) | |
parse for all the structs
Diffstat (limited to 'auto.proto')
| -rw-r--r-- | auto.proto | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -64,8 +64,8 @@ message MsgName { // string name = 1; // the name of the message aka struct. for this example: "Shelf" - bool marshal = 2; // if "Shelf" should have Marshal & Unmarshal functions - bool mutex = 3; // an experiment to insert a mutex into the protoc generated msg struct (bad idea?) + bool doMarshal = 2; // if "Shelf" should have Marshal & Unmarshal functions + bool doMutex = 3; // an experiment to insert a mutex into the protoc generated msg struct (bad idea?) repeated string sort = 4; // "Book", "Picture", etc repeated string unique = 5; // if the fields should have AppendUnique() functions } |
