module.h

来自「good luck to everyone!」· C头文件 代码 · 共 28 行

H
28
字号
/*----------------------------------------------------------------------------*/
/* Copyright (c) FIRST 2008. All Rights Reserved.							  */
/* Open Source Software - may be modified and shared by FRC teams. The code   */
/* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib.  */
/*----------------------------------------------------------------------------*/

#ifndef MODULE_H_
#define MODULE_H_

#include "SensorBase.h"

class Module: public SensorBase
{
public:
	UINT32 GetSlot() {return m_slot;}

protected:
	explicit Module(UINT32 slot);
	virtual ~Module();

	UINT32 m_slot; ///< Slot number where the module is plugged into the chassis.

	// Slots are 1 based, so ignore element 0.
	static Module* m_modules[kChassisSlots + 1];
};

#endif

⌨️ 快捷键说明

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