view 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 source

// 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;