Source code for ./tutorials/05-make/pizza/tomatosauce.h (via source-highlight)

#ifndef TOMATOSAUCE_H
#define TOMATOSAUCE_H
class TomatoSauce {
private:
    int quantity;
public:
    TomatoSauce(int amount);
};
#endif