c++ class declaration vs definition code example
Example: declaration vs. definition cpp
\\this is the declaration
int declaration();
\\this is the definition
int definition = 0
\\this is the declaration
int declaration();
\\this is the definition
int definition = 0