#ifndef EVENT_H
#define EVENT_H

#include <string.h>
#include <iostream.h>
#include "debug.h"

typedef enum {CR, CC, IO, SL, NONE} EventType;

class Event
{       
        private:
                EventType event;
                int     duration;

        public:
                Event(EventType, int);
                ~Event();

                void Display();
                EventType getEvent();
                int getDuration();

};
#endif

