diff Applications/Samples/SimpleViewer/ApplicationCommands.fbs @ 445:ee41b6a017d7 bgo-commands-codegen

dumb change
author bgo-osimis
date Wed, 16 Jan 2019 16:24:45 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Applications/Samples/SimpleViewer/ApplicationCommands.fbs	Wed Jan 16 16:24:45 2019 +0100
@@ -0,0 +1,35 @@
+// Example IDL file for our monster's schema.
+namespace Orthanc.Stone.Applications;
+
+union VsolCommands {SelectPanel, ConfigurePanel, StartAcquisition}
+union VsolReplies { SelectPanelReply, StartAcquisitionReply }
+
+table SelectPanel {
+  panelNumber:int32;
+}
+
+table SelectPanelReply {
+  ok:bool;
+  errorMessage:string;
+}
+
+table ConfigurePanel {
+}
+
+table StartAcquisition {
+}
+
+table StartAcquisitionReply {
+  ok:bool;
+}
+
+table VsolCommand {
+  command: VsolCommands;
+}
+
+table VsolReply {
+  command: VsolReplies;
+}
+
+// root_type Monster;
+