I have a large C ++ file (SS.cpp) which I decided to split into smaller files so that I can navigate through it without the need for aspirins. Therefore I created
SS_main.cpp
SS_screen.cpp
SS_disk.cpp
SS_web.cpp
SS_functions.cpp
and cut out all the functions from the source SS.cpp file for them.
And finally, I included them in the source file:
#include "SS_main.cpp"
#include "SS_screen.cpp"
#include "SS_disk.cpp"
#include "SS_web.cpp"
#include "SS_functions.cpp"
This situation persists for several months, and these are the problems that I had:
, , ? , .