Is it a good idea to work on header files only, just at the start of the project?
- by m4design
To explain my point further, I'm a beginner in programming, and I'm working on a small project.
Instead of separating the .cpp file from the header file, I'm implementing the code in the header files, and making one .cpp file for testing. I do this to have less files, hence easier navigation. Then later I'll separate the code as it should be.
Will this cause any problems? should I continue doing that?
Thanks.