#ifndef STAGE_H
#define STAGE_H

#include "persons.h"
#include "catalog.h"
#include <string>
#include <map>
#include <vector>

    class Stage {
        private:
            std::map <std::string, int> delay_;
            int hard_;
        public:
            Stage(int hard);
            void Simulate(std::vector<Cyclist> vector);
            inline std::map <std::string, int> GetDelays(){return delay_;}
            inline int GetHard(){return hard_;}


    };

#endif