Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #include "Kreuzung.h"
  2.  
  3. //Weg.h funktioniert nicht :(
  4. Kreuzung::Kreuzung()
  5.     :Simulationsobjekt(),
  6.     p_dTankstelle(0)
  7. {
  8.  
  9. }
  10.  
  11. Kreuzung::Kreuzung(std::string Name, double TankVolumen)
  12.     :Simulationsobjekt(Name),
  13.     p_dTankstelle(TankVolumen)
  14.  
  15. {
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement