SWADP/Opdracht_2/Auto.cpp

10 lines
119 B
C++

#include "Auto.h"
#include "Snelheid.h"
Auto::Auto(Snelheid*s) : S(s){
}
void Auto::meetSnelheid(){
S->meet();
}