Source code for ./tutorials/05-make/pizza/cheese.cpp (via source-highlight)

#include "cheese.h"

Cheese::Cheese() {
    quantity=0;
}

Cheese::Cheese(int amount) {
    quantity=amount;
}