custom_impl.h
来自「支持组件模型CCM的开源中间件-mico」· C头文件 代码 · 共 27 行
H
27 行
#ifndef __CUSTOM_IMPL_H__#define __CUSTOM_IMPL_H__#include "custom.h"class CustomValue_impl : virtual public CustomValue, virtual public CORBA::DefaultValueRefCountBase{public: CORBA::Long value (); void marshal (CORBA::DataOutputStream *os); void unmarshal (CORBA::DataInputStream *is);};class CustomValue_Factory : virtual public CORBA::ValueFactoryBase{public: CORBA::ValueBase * create_for_unmarshal () { return new CustomValue_impl; }};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?