Advertisement
Guest User

TramStop

a guest
Apr 9th, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. //
  2. // Created by Rob Mandelings on 2/04/2020.
  3. //
  4.  
  5. #pragma once
  6.  
  7. #include "Station.h"
  8.  
  9. class Track;
  10.  
  11. class Line;
  12. class Platform;
  13.  
  14. class TramStop : public virtual Station {
  15.  
  16. private:
  17.  
  18.     Platform* m_platform;
  19.  
  20. public:
  21.  
  22.     explicit TramStop(Platform* platform);
  23.  
  24.     StationType getType() const { return ABOVE_GROUND; };
  25.  
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement