How you create a default constructor is like this:
Employee(){}; //Default Constructor
But if you aren't doing anything within the default constructor, then it is essentially pointless because there is already a default constructor and a default deconstructor that is instantiated regardless.