rm ingored

This commit is contained in:
2024-11-22 23:26:07 +03:00
parent 5450d1756f
commit 63e4c1382f
65 changed files with 0 additions and 7599 deletions

View File

@@ -1,26 +0,0 @@
#include "goods.h"
#include <string>
Goods::Goods(std::string name, double price_per_unit, double quantity) {
this->name = name;
this->price_per_unit = price_per_unit;
this->quantity = quantity;
}
double Goods::calculate_total_price() {
return this->price_per_unit * this->quantity;
}
std::string Goods::get_name() { return this->name; }
double Goods::get_quantity() { return this->quantity; }
double Goods::get_price_per_unit() { return this->price_per_unit; }
void Goods::set_name(std::string name) { this->name = name; }
void Goods::set_quantity(double quantity) { this->quantity = quantity; }
void Goods::set_price_per_unit(double price_per_unit) {
this->price_per_unit = price_per_unit;
}

View File

@@ -1,24 +0,0 @@
#ifndef GOODS_H
#define GOODS_H
#include <string>
class Goods
{
std::string name;
double quantity; // by weight or by the piece
double price_per_unit;
public:
Goods(std::string, double, double);
double calculate_total_price();
std::string get_name();
double get_quantity();
double get_price_per_unit();
void set_name(std::string);
void set_quantity(double);
void set_price_per_unit(double);
};
#endif // GOODS_H