What’s the c++ inline class?
It’s allowed in case you wish to declare a function that returns an object of that class directly after the class’ declaration, for example : #include <iostream> inline class AAA { public: AAA() { // Nothing } AAA(const AAA& _Param) { std::cout << “Calling Copy Constructor of AAA\n”; } }A() { AAA a; return a; … Read more