In most of my coding works, usually the most cases in which the enum is defined inside a class so that the enum is more specific.
for example, there is a demo:
class Clothes
{
public:
enum class Color
{
Red,
Black,
White,
}
};
So, can this request will be supported in the future?
In most of my coding works, usually the most cases in which the enum is defined inside a class so that the enum is more specific.
for example, there is a demo:
class Clothes
{
public:
enum class Color
{
Red,
Black,
White,
}
};
So, can this request will be supported in the future?