10 lines
287 B
C++
10 lines
287 B
C++
#include "Dimension.h"
|
|
|
|
Dimension::Dimension(double width, double height, double depth) : width(width), height(height), depth(depth) {
|
|
|
|
}
|
|
|
|
std::string Dimension::toString() const {
|
|
return std::to_string(width) + " " + std::to_string(height) + " " + std::to_string(depth);
|
|
}
|