Files
2026-05-04 14:52:32 +02:00

15 lines
368 B
C++

//
// Created by Franc on 04.05.2026.
//
#include "AlcoholicDrink.h"
AlcoholicDrink::AlcoholicDrink(string n, double b, int v, bool c, double a) : Drink(n, b, v, c) {
this->alcoholContent = a;
}
AlcoholicDrink::~AlcoholicDrink(){}
string AlcoholicDrink::printInfo() {
return Drink::printInfo() + ", with alcohol content of: " + to_string(alcoholContent);
}