21 lines
363 B
C++
21 lines
363 B
C++
//
|
|
// Created by Nik on 22/04/2022.
|
|
//
|
|
|
|
#ifndef NALOGA0701_RACUNALNIK_H
|
|
#define NALOGA0701_RACUNALNIK_H
|
|
#include <string>
|
|
|
|
class Racunalnik {
|
|
private:
|
|
int poraba = 600;
|
|
int volumen = 7;
|
|
public:
|
|
Racunalnik() = default;
|
|
Racunalnik(int poraba, int volumen);
|
|
std::string toString() const;
|
|
};
|
|
|
|
|
|
#endif //NALOGA0701_RACUNALNIK_H
|