46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*******************************************************************************
|
|
* *
|
|
* Société de Transports de Montréal. *
|
|
* 2012 *
|
|
* *
|
|
* Projet Zones Tests *
|
|
* *
|
|
* *
|
|
* *
|
|
*******************************************************************************/
|
|
/*
|
|
Description:
|
|
Description du fichier si nécessaire.
|
|
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
/* Revision:
|
|
### 20131022 JFM
|
|
Verision d'origine.
|
|
|
|
### YYYYMMDD Description du besoin ou du bug
|
|
Description du changement.
|
|
*/
|
|
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef EVENT_H
|
|
#define EVENT_H
|
|
|
|
#include "GlobalDefine.h"
|
|
#include "EventItem.h"
|
|
|
|
|
|
class CEvent
|
|
{
|
|
public:
|
|
CEvent(unsigned int EventType, QString EventLabel,bool IsItemAnimated);
|
|
|
|
unsigned int mEventType;
|
|
QString mEventLabel;
|
|
bool mItemAnimated;
|
|
};
|
|
|
|
#endif // EVENT_H
|