C++ enum forward declaration
Preface
There are two forms of enumeration in C++, enum and enum class. Enum is the pre-c++11 syntax, which means it is an unscoped enumeration. The enum class was introduced in C++11 and provides a scoped enumeration
Unscoped enumerations
// A.h
enu...
kangaroolove.hashnode.dev1 min read