aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise03/Electronics.cpp
blob: 73be261540f1c5f1631add8b2d5140af595f8dd5 (plain) (blame)
1
2
3
4
5
6
#include "Electronics.h"
#include <iostream>

void Electroics::Print() {
	std::cout << model << ' ' << needsVolts << ' ' << needsAmps;
}