diff options
Diffstat (limited to 'week11/Exercise03/Electronics.cpp')
| -rw-r--r-- | week11/Exercise03/Electronics.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/week11/Exercise03/Electronics.cpp b/week11/Exercise03/Electronics.cpp new file mode 100644 index 0000000..73be261 --- /dev/null +++ b/week11/Exercise03/Electronics.cpp @@ -0,0 +1,6 @@ +#include "Electronics.h" +#include <iostream> + +void Electroics::Print() { + std::cout << model << ' ' << needsVolts << ' ' << needsAmps; +} |
