21 lines
371 B
C++
21 lines
371 B
C++
//
|
|
// Created by Nik on 11/04/2022.
|
|
//
|
|
|
|
#ifndef NALOGA0602_PRIKLJUCEK_H
|
|
#define NALOGA0602_PRIKLJUCEK_H
|
|
|
|
#include <string>
|
|
|
|
class Prikljucek {
|
|
protected:
|
|
double dolzina, sirina;
|
|
public:
|
|
Prikljucek(double dolzina, double sirina);
|
|
virtual std::string toString() const = 0;
|
|
unsigned int getLenght();
|
|
};
|
|
|
|
|
|
#endif //NALOGA0602_PRIKLJUCEK_H
|