checks-parser/check/check.h

19 lines
268 B
C
Raw Permalink Normal View History

#ifndef CHECK_H
#define CHECK_H
#include "../goods/goods.h"
#include <vector>
2024-09-01 16:15:00 +03:00
class Check {
std::vector<Goods> goods;
2024-09-01 16:15:00 +03:00
public:
Check();
void add_goods(Goods);
double calculae_total_price();
2024-09-01 16:15:00 +03:00
std::vector<Goods> &get_goods();
};
#endif // CHECK_H