Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef CELL_H
- #define CELL_H
- #include <iostream>
- #include <string>
- using namespace std;
- class Cell
- {
- private:
- string name;
- int price;
- string design;
- string touch;
- public:
- Cell(string name, int price, string design, string touch);
- Cell();
- string getDesign();
- string getName();
- string getTouch();
- int getPrice();
- bool operator<(Cell cell1);
- void SetPrice(int price);
- void setDesign(string design);
- void setTouch(string touch);
- void setName(string name);
- void show();
- void showTouch();
- void showDesign();
- };
- #endif
Advertisement
Add Comment
Please, Sign In to add comment