?? custom_impl.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 + -