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

📄 idarturretdevice.hh

📁 一个机器人平台
💻 HH
字号:
/////////////////////////////////////////////////////////////////////////////// File: irturretdevice.hh// Author: Richard Vaughan// Date: 22 October 2001// Desc: Provides a single interface to a collection of IDARs//////  CVS info://  $Source: /cvsroot/playerstage/code/stage/src/models/Attic/idarturretdevice.hh,v $//  $Author: rtv $//  $Revision: 1.2 $/////////////////////////////////////////////////////////////////////////////#ifndef IDARTURRETDEVICE_HH#define IDARTURRETDEVICE_HH#include "idardevice.hh"class CIdarTurretDevice : public CPlayerEntity{private:   CIdarDevice* idars[ PLAYER_IDARTURRET_IDAR_COUNT ]; public:     CIdarTurretDevice( LibraryItem *libit, CWorld *world, CEntity *parent );   // a static named constructor - a pointer to this function is given  // to the Library object and paired with a string.  When the string  // is seen in the worldfile, this function is called to create an  // instance of this entitypublic: static CIdarTurretDevice* Creator( LibraryItem *libit,  CWorld *world, CEntity *parent )  { return( new CIdarTurretDevice( libit, world, parent ) ); }  virtual void Sync( void );   virtual void Update( double sim_time );  #ifdef INCLUDE_RTK2  rtk_fig_t* data_fig;  // Initialise the rtk gui  protected: virtual void RtkStartup();  // Finalise the rtk gui  protected: virtual void RtkShutdown();  // Update the rtk gui  protected: virtual void RtkUpdate();  #endif};#endif

⌨️ 快捷键说明

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