SWADP/Opdracht_2/Auto.cpp

12 lines
136 B
C++
Raw Permalink Normal View History

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