school/semester_2/programiranje_2/naloga0801/ConstructionMaterial.h

18 lines
356 B
C++

#ifndef NALOGA0801_CONSTRUCTIONMATERIAL_H
#define NALOGA0801_CONSTRUCTIONMATERIAL_H
#include "string"
class ConstructionMaterial {
private:
std::string item;
unsigned int amount;
public:
ConstructionMaterial(std::string item, unsigned int amount);
std::string toString();
};
#endif //NALOGA0801_CONSTRUCTIONMATERIAL_H