4
Форвард декларації проти включати
Reduce the number of #include files in header files. It will reduce build times. Instead, put include files in source code files and use forward declarations in header files. Я читав це тут. http://www.yolinux.com/TUTORIALS/LinuxTutorialC++CodingStyle.html . Так сказано, якщо клас (клас A) у заголовковому файлі не потребує використання фактичного визначення якогось …
18
c++
coding-style