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

📄 indicatorlight.h

📁 含有uml的多个实例及实例的java源码。
💻 H
字号:
// {{{RME classifier 'Logical View::HWDrivers::IndicatorLight'#ifndef rtg_IndicatorLight_H#define rtg_IndicatorLight_H#ifdef PRAGMA#pragma interface "rtg/IndicatorLight.h"#endif#include <RTSystem/AutoTestMarkI_x86VisualCpp60.h>struct IndicatorLight{	class Base : public RTRootProtocol	{	public:		inline Base( void );		inline ~Base( void );		enum		{			rti_indicatorOn = rtiLast_RTRootProtocol + 1		  , rti_indicatorOff		};	protected:		enum { rtiLast_IndicatorLight = rti_indicatorOff };	public:		inline RTInSignal indicatorOn( void );		inline RTInSignal indicatorOff( void );		static const RTProtocolDescriptor rt_class;	private:		static const RTSignalDescriptor rt_signals[];	};	class Conjugate : public RTRootProtocol	{	public:		inline Conjugate( void );		inline ~Conjugate( void );	protected:		enum { rtiLast_IndicatorLight = rtiLast_RTRootProtocol };	public:		inline RTOutSignal indicatorOn( void );		inline RTOutSignal indicatorOff( void );		static const RTProtocolDescriptor rt_class;	private:		static const RTSignalDescriptor rt_signals[];	};};inline IndicatorLight::Base::Base( void )	: RTRootProtocol(){}inline IndicatorLight::Base::~Base( void ){}inline RTInSignal IndicatorLight::Base::indicatorOn( void ){	return RTInSignal( this, rti_indicatorOn );}inline RTInSignal IndicatorLight::Base::indicatorOff( void ){	return RTInSignal( this, rti_indicatorOff );}inline IndicatorLight::Conjugate::Conjugate( void )	: RTRootProtocol(){}inline IndicatorLight::Conjugate::~Conjugate( void ){}inline RTOutSignal IndicatorLight::Conjugate::indicatorOn( void ){	return RTOutSignal( this, Base::rti_indicatorOn, (const void *)0, &RTType_void );}inline RTOutSignal IndicatorLight::Conjugate::indicatorOff( void ){	return RTOutSignal( this, Base::rti_indicatorOff, (const void *)0, &RTType_void );}#endif /* rtg_IndicatorLight_H */// }}}RME

⌨️ 快捷键说明

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