19 lines
308 B
C++
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
|