Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3. #include <map>
  4.  
  5. class Discipline {
  6. private:
  7.     int duration{ -1 };
  8.     std::string name;
  9.     std::map<Athlete *, int> athletes;
  10.    
  11. public:
  12.     virtual void schedule() = 0;
  13.     virtual auto filter() = 0;
  14. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement