consolidate all repos to one for archive
This commit is contained in:
17
semester_2/programiranje_2/naloga0801/ConstructionMaterial.h
Normal file
17
semester_2/programiranje_2/naloga0801/ConstructionMaterial.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user