Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Cake:
- public:
- Cake(string flavor, string frosting) {
- cakeType = flavor;
- frostingType = frosting;
- }
- private:
- string cakeType;
- string frostingType;
- };
- class LayerCake: public Cake {
- public:
- LayerCake(string flavor, string frosting, int layers, int
- quantity) {
- numLayers = layers;
- cakeQuantity = quantity;
- Cake(flavor, frosting);
- private:
- int numLayers;
- int cakeQuantity;
- };
Add Comment
Please, Sign In to add comment