📄 test.idl
字号:
//
// Test.idl,v 1.2 2001/04/24 08:02:58 coryan Exp
//
module Test
{
interface Shutdown_Helper;
/// An interface to send oneway messages
interface Oneway_Receiver
{
/// The server raises a system exception, only the
/// SYNC_WITH_TARGET can detect that.
oneway void raise_no_permission ();
/// Destroy the object
oneway void destroy ();
/// Return a helper interface
Shutdown_Helper get_shutdown_helper ();
};
/// A simple interface to shutdown the server
interface Shutdown_Helper
{
/// Shutdown the server
void shutdown ();
};
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -