49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
/*******************************************************************************
|
|
* *
|
|
* Société de Transports de Montréal. *
|
|
* 2012 - 2013 *
|
|
* *
|
|
* Projet Zones Tests *
|
|
* *
|
|
* *
|
|
* *
|
|
*******************************************************************************/
|
|
/*
|
|
Description:
|
|
Description du fichier si nécessaire.
|
|
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
/* Revision:
|
|
### YYYMMDD JFM
|
|
Verision d'origine.
|
|
|
|
### YYYYMMDD Description du besoin ou du bug
|
|
Description du changement.
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef SIMULATORLAZERPROBESMGR_H
|
|
#define SIMULATORLAZERPROBESMGR_H
|
|
|
|
#include "AbstractLazerProbeMgr.h"
|
|
#include "SimulatorLazerProbe.h"
|
|
|
|
class CSimulatorLazerProbesMgr : public CAbstractLazerProbeMgr
|
|
{
|
|
public:
|
|
CSimulatorLazerProbesMgr();
|
|
~CSimulatorLazerProbesMgr();
|
|
|
|
virtual unsigned int InitLazerProbes(void);
|
|
virtual CAbstractLazerProbe *GetLazerProbeHandle(eLazerProbeType_t LazerProbeType, unsigned int LazerProbeID);
|
|
|
|
private:
|
|
CAbstractLazerProbe *mInternalLazerProbe, *mExternalLazerProbe;
|
|
|
|
};
|
|
|
|
#endif // SIMULATORLAZERPROBESMGR_H
|