summaryrefslogtreecommitdiff
path: root/auto.proto
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-08 20:52:47 -0600
committerJeff Carr <[email protected]>2025-01-08 20:52:47 -0600
commitad67a6f42da6e712431fa0929ad833c9cd485041 (patch)
tree2539470d5afb93f908913755cc09ca2e177842c6 /auto.proto
parentd850ec82c849d9226a9558e46ad4ad226c91a16e (diff)
parse for all the structs
Diffstat (limited to 'auto.proto')
-rw-r--r--auto.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto.proto b/auto.proto
index 7d5c0d0..9ed008e 100644
--- a/auto.proto
+++ b/auto.proto
@@ -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
}