📄 attributes.idl
字号:
#ifndef ORO_CORBA_ATTRIBUTES#define ORO_CORBA_ATTRIBUTES#include "Operations.idl"module RTT{ module Corba { /** * Exposes both attributes and properties * of a task as Expression objects. * @ingroup CompIDL */ interface AttributeInterface { struct Property { string name; string description; }; typedef sequence<Property> PropertyNames; typedef sequence<string> AttributeNames; AttributeNames getAttributeList(); PropertyNames getPropertyList(); Expression getAttribute( in string name ); Expression getProperty( in string name ); }; };};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -