📄 test.idl
字号:
//
// Test.idl,v 1.2 2003/08/07 00:05:26 arvindk Exp
//
/// A simple module to avoid namespace pollution
module Test
{
/// Use a timestamp to measure the roundtrip delay
typedef unsigned long long Timestamp;
/// Measure roundtrip delay
interface Roundtrip
{
/// A simple method to measure roundtrip delays
/**
* The operation simply returns its argument, this is used in AMI
* and deferred synchronous tests to measure the roundtrip delay
* without the need for a different reply handler for each
* request.
*/
Timestamp test_method (in Timestamp send_time);
/// Shutdown the ORB
void shutdown ();
};
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -