/******************************************************************************* * * * 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, int Color); unsigned int mEventType; QString mEventLabel; bool mItemAnimated; int mEventColor; }; #endif // EVENT_H