prog-obiektowe/cpp/src/Figure.cpp
2023-04-04 13:26:38 +02:00

19 lines
308 B
C++

//
// Created by ahypki on 28.03.23.
//
#include "Figure.h"
namespace ahypki {
std::string Figure::getName() {
return this->name;
}
void Figure::setName(std::string newName) {
this->name = newName;
}
double Figure::computeArea() {
return 0.0;
}
} // ahypki