⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 custom_impl.h

📁 MICO2.3.13 corba 环境平台
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -