37 lines
1.4 KiB
C++
37 lines
1.4 KiB
C++
/*******************************************************************************
|
|
* *
|
|
* Société de Transports de Montréal. *
|
|
* 2012 *
|
|
* *
|
|
* Projet Zones Tests *
|
|
* *
|
|
* *
|
|
* *
|
|
*******************************************************************************/
|
|
/*
|
|
Description:
|
|
Classe/structure qui décrit une fonction de détection désactivée. Utilisé
|
|
par la classe CEventMgr.
|
|
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
/* Revision:
|
|
### YYYMMDD JFM
|
|
Verision d'origine.
|
|
|
|
### YYYYMMDD Description du besoin ou du bug
|
|
Description du changement.
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
|
|
#include "Event.h"
|
|
|
|
CEvent::CEvent(unsigned int EventType, QString EventLabel, bool IsItemAnimated)
|
|
{
|
|
mEventType = EventType;
|
|
mEventLabel = EventLabel;
|
|
mItemAnimated = IsItemAnimated;
|
|
}
|