#ifndef AGENCIA_H #define AGENCIA_H class Evento; class Agencia { public: Agencia(); int correr(); bool registrarEvento(); bool verEstadisticas(); protected: static Evento* crearEvento(unsigned tipo); }; #endif // AGENCIA_H