#include using namespace std; class Cuboid { private: int width, height, length; protected: int color; public: int borderWidth; public: Cuboid(int w, int h, int l); void setWidth(int w); void setHeight(int h); void setLength(int l); int getWidth(); int getHeight(); int getLength(); }; Cuboid::Cuboid(int w, int h, int l) { width = w; height = h; length = l; color = 0xffffff; } void Cuboid::setWidth(int w) { width = w; } void Cuboid::setHeight(int h) { height = h; } void Cuboid::setLength(int l) { length = l; } int Cuboid::getWidth() { return width; } int Cuboid::getHeight() { return height; } int Cuboid::getLength() { return length; }