19 lines
376 B
C++

//
// Created by Nik on 07/04/2022.
//
#ifndef PRIRAVA_1_WEIGHABLEARTICLE_H
#define PRIRAVA_1_WEIGHABLEARTICLE_H
#include "Article.h"
class WeighableArticle : public Article{
private:
public:
WeighableArticle(std::string name, std::string barcode, double price, double quantity);
std::string toString();
};
#endif //PRIRAVA_1_WEIGHABLEARTICLE_H