Recently I started working with c++ and I was wondering.
If I'm working on DLL, I first define all the classes and and their functions in the header and then write their functionality in .cpp
file in the same project.
But what if I instead defined only the classes themselves and then defined their functions in .cpp
file.
It would somewhat reduce the amount of code required and the code would be more readable with much less ::
notations.
Is something like that possible?