SWADP/Opdracht_2/Auto.cpp

10 lines
119 B
C++
Raw Normal View History

2023-04-28 11:36:57 +00:00
#include "Auto.h"
#include "Snelheid.h"
Auto::Auto(Snelheid*s) : S(s){
}
void Auto::meetSnelheid(){
S->meet();
}