aboutsummaryrefslogtreecommitdiff
path: root/week11/Exercise03/WashingMachine.cpp
blob: 18caa5f018ce12ce013b50860e14f394be210fca (plain) (blame)
1
2
3
4
5
6
7
#include "WashingMachine.h"
#include <iostream>

void WashingMachine::Print() {
	Electroics::Print();
	std::cout << ' ' << maxLaundryWeight;
}