What is wrong with this code?
So i tryed to reproduce the composition tutorial in codeblocks and i wrote the code just like it was in the tutorial just in separate files. And codeblocks gives out like 11 errors and i cant find out how to fix them on my own. /////Geburtstag.h///// #ifndef GEBURTSTAG_H #define GEBURTSTAG_H class Geburtstag { public: Geburtstag(); void DatumAusgabe(); protected: private: int Tag; int Monat; int Jahr; }; #endif // GEBURTSTAG_H /////Geburtstag.cpp///// #include "Geburtstag.h" Geburtstag::Geburtstag(int d,int m, int y){:Tag(d),Monat(m),Jahr(y)} Geburtstag::DatumAusgabe(){ cout<<Tag<<"/"<<Monat<<"/"<<Jahr<<"/"<<endl;} /////Person.h////// #ifndef PERSON_H #define PERSON_H class Person { private: string Name; public: Person(); void NameAusgabe(); protected: }; #endif // PERSON_H /////Person.cpp///// #include "Person.h" Person::Person(string n):Name(n) Person::NameAusgabe(){ cout<<Name<<endl; } { //ctor }