reactorhandle.h

来自「the vxworks system kernel souce packeg.t」· C头文件 代码 · 共 34 行

H
34
字号
/* ReactorHandle *//* Copyright (c) 1999 Wind River Systems, Inc. *//*modification history--------------------01b,28jun99,aim  added handleValid01a,10may99,aim  created*/#include <ReactorTypes.h>#include <iostream>class ReactorHandle    {  public:    virtual ~ReactorHandle ();    virtual REACTOR_HANDLE handleGet () const;    virtual REACTOR_HANDLE handleSet (REACTOR_HANDLE);    virtual bool handleInvalid () const;    virtual bool handleIsValid () const;    friend ostream& operator<< (ostream& os, const ReactorHandle&);  protected:    ReactorHandle ();		// ensure ReactorHandle is an ABC.  private:    REACTOR_HANDLE m_reactorHandle;    };

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?