Source code for ./tutorials/05-make/pizza/pepperoni.h (via source-highlight)
#ifndef PEPPERONI_H
#define PEPPERONI_H
class Pepperoni {
private:
int quantity;
public:
Pepperoni();
Pepperoni(int amount);
};
#endif
#ifndef PEPPERONI_H
#define PEPPERONI_H
class Pepperoni {
private:
int quantity;
public:
Pepperoni();
Pepperoni(int amount);
};
#endif