attributes.idl

来自「机器人开源项目orocos的源代码」· IDL 代码 · 共 39 行

IDL
39
字号
#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 + =
减小字号Ctrl + -
显示快捷键?