📄 counter.idl
字号:
//Counter.idl,v 1.4 2000/08/28 22:40:51 corsaro Exp
// This interface abstracts a counter. It provides methods
// for increasing and getting the value of the counter.
interface Counter
{
void increment ();
// Increases the counter value.
long get_count ();
// Decreases the counter value.
void reset ();
// Sets the counter value to zero.
oneway void shutdown ();
// Shuts down the ORB on which this obj is running.
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -