account.idl
来自「支持组件模型CCM的开源中间件-mico」· IDL 代码 · 共 14 行
IDL
14 行
// -*- c++ -*-interface Account { exception BigAmount {}; void deposit( in unsigned long amount, out unsigned long prev ); void withdraw( in unsigned long amount, out unsigned long prev ) raises(BigAmount); long balance();};interface Bank { Account create (); void shutdown ();};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?