diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-12-14 18:44:50 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-12-14 18:44:50 +0100 |
commit | 114fb12ed445b0d7472655fc26da052a2a2aa167 (patch) | |
tree | 0c019f744470f11f76f3eea3a6c33a6fb7bdf3be /oop2w6/Resistor.h | |
parent | 083b0f690ce69371473433cce7f238360188238d (diff) |
week 6 klaar
Diffstat (limited to 'oop2w6/Resistor.h')
-rw-r--r-- | oop2w6/Resistor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oop2w6/Resistor.h b/oop2w6/Resistor.h index 133004d..abeea40 100644 --- a/oop2w6/Resistor.h +++ b/oop2w6/Resistor.h @@ -11,5 +11,6 @@ public: Resistor(double value, double tolerance); virtual double getValue(); virtual double getTolerance(); + virtual void accept(Visitor&); }; |