他のクラスの Class フィールド型を宣言できないのはなぜですか? これにより、C4430 エラーが発生します。
//Entity.h file
class Entity
{
public:
Box test;
};
class Box
{
public:
double length; // Length of a box
double breadth; // Breadth of a box
double height; // Height of a box
};