remove ignored pt.2

This commit is contained in:
2024-11-22 23:26:42 +03:00
parent 63e4c1382f
commit 9ba8a513e5
58 changed files with 5609 additions and 0 deletions

18
check/check.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef CHECK_H
#define CHECK_H
#include "../goods/goods.h"
#include <vector>
class Check {
std::vector<Goods> goods;
public:
Check();
void add_goods(Goods);
double calculae_total_price();
std::vector<Goods> &get_goods();
};
#endif // CHECK_H