tipos.h 333 B

123456789101112131415161718192021
  1. #ifndef __TIPOS__
  2. #define __TIPOS__
  3. #include <iostream>
  4. #include <vector>
  5. #include <cassert>
  6. using namespace std;
  7. typedef string Deporte;
  8. typedef string Pais;
  9. enum Genero {
  10. Femenino,
  11. Masculino
  12. };
  13. typedef pair<Deporte, Genero> Categoria;
  14. std::ostream &operator<<(std::ostream &os, const Genero &g);
  15. #endif /*__TIPOS__*/