error: redefinition of class
You should structure your code between .h (headers) and .cpp files (implementation). You should include header files: .h Never include .cpp files. (Unless you know what you do, and that would be in really rare cases). Otherwise you’re ending compiling several times your class, and you get the error your compiler is telling you: ‘redefinition of class…’ An additional … Read more