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