pos.idl
来自「mico_example_siegel c源代码」· IDL 代码 · 共 36 行
IDL
36 行
#ifndef POS_IDL#define POS_IDLmodule POS{ typedef long POSId; typedef string Barcode; interface InputMedia { typedef string OperatorCmd; void BarcodeInput(in Barcode Item); void KeypadInput(in OperatorCmd Cmd); }; interface OutputMedia { boolean OutputText(in string StringToPrint ); }; interface POSTerminal { void Login(); void PrintPOSSalesSummary(); void PrintStoreSalesSummary(); void SendBarcode(in Barcode Item); void ItemQuantity (in long Quantity); void EndOfSale(); };};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?