Post #54 309 Sep 14, 2021, 13:00 UTC #cpp #stackoverflow https://stackoverflow.com/a/10290176 Stack Overflow Forward Declaration of variables/classes in std namespace I usually use forward declaration predominantly, if I have a class that does not need complete definition in .hpp file Ex) //B.hpp namespace A_file { class A; } namespace B_file { cla...