📄 test.idl
字号:
//
// Test.idl,v 1.3 2003/05/04 23:16:31 parsons Exp
//
/// A simple module to avoid namespace pollution
module Test
{
exception InvalidTimestamp {};
exception ServerOverload {};
/// Use a timestamp to measure the roundtrip delay
typedef unsigned long long Timestamp;
valuetype Red_Herring
{
Timestamp test_method (in Timestamp send_time)
raises (InvalidTimestamp, ServerOverload);
};
/// Measure roundtrip Delay
interface Roundtrip
{
Timestamp test_method (in Timestamp send_time)
raises (InvalidTimestamp, ServerOverload);
};
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -