prog-obiektowe/cpp/Figure.cpp

19 lines
308 B
C++
Raw Normal View History

//
// 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