thief.idl

来自「一个使用CORBA DSI编程的例子」· IDL 代码 · 共 38 行

IDL
38
字号
/*This example is to test the activation and de-activation of servant object*/module Thief{	interface Valuable	{		void sayValue();	};		interface Count	{		void print();	};		interface Money : Valuable	{		void getCount(out Count count);	};		interface Jewelry : Valuable	{	};		interface Session	{		void applyKey(in string key, 			out Valuable theft);				void setMode(in short mode);	};		interface SessionFactory	{		void login(out Session session);	};	};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?