Advertisement
Guest User

Untitled

a guest
May 26th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.95 KB | None | 0 0
  1. // ФАЙЛ "func.h"
  2.  
  3. #ifndef FUNC_H
  4. #define FUNC_H
  5.  
  6. #include "types.h"
  7.  
  8. void addCountry();
  9. country *createCountry();
  10. void addToList(country *&root, country *pC);
  11. bool listCountry();
  12.  
  13. void removeCountry();
  14. country *chooseCountry();
  15. void removeCountry(country *&root, country *pC);
  16. void editCountry();
  17. void showCountry();
  18.  
  19. void addSport();
  20. sport *createSport();
  21. void addSportLast(country *pC, sport *pS);
  22. bool listSport(country *pC);
  23.  
  24. void removeSport();
  25. sport *chooseSport(country *p1);
  26. void removeSport(country *pC, sport *pS);
  27. void showSport();
  28. void editSport();
  29.  
  30. void addSportsman();
  31. sportsman *createSportsman();
  32. void addSportsmanSort(sport *pS, sportsman *pSS);
  33. bool listSportsman(sport *pS);
  34.  
  35. void removeSS();
  36. sportsman *chooseSportsman(sport *p1);
  37. void removeSS(sport *pS, sportsman *pSS);
  38. void showSS();
  39. void editSS();
  40.  
  41. void maxCountrySS();
  42. void calculateSS();
  43.  
  44. void storeToFile();
  45. void restoreFromFile();
  46.  
  47. #endif // FUNC_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement