commit | 8a8ee686dc36a1ef41a4cd255cc3254646f10580 | [log] [tgz] |
---|---|---|
author | Brian Silverman <brians> | Wed Feb 12 14:06:06 2014 -0800 |
committer | Brian Silverman <brians> | Wed Feb 12 14:06:06 2014 -0800 |
tree | 7fa4907cba52168b8edc138d4c86da30b109fe50 | |
parent | 665e60cad0ad96df9f4c4e7bb919180decf66b89 [diff] [blame] |
more work towards using queue types for logging
diff --git a/aos/common/test_queue.q b/aos/common/test_queue.q index a7b441f..878be08 100644 --- a/aos/common/test_queue.q +++ b/aos/common/test_queue.q
@@ -1,5 +1,16 @@ package aos.common.testing; +struct Structure { + bool struct_bool; + uint16_t struct_int; +}; + +message MessageWithStructure { + bool other_member; + Structure struct1; + Structure struct2; +}; + message TestingMessage { bool test_bool; int32_t test_int;