// // Created by caleb on 3/22/24. // #ifndef STRUCTURESLAB_CALEBFONTENOT_STRUCTURES_H #define STRUCTURESLAB_CALEBFONTENOT_STRUCTURES_H #include struct Employee { Employee(); Employee(char * pName, double salary); ~Employee(); char * pName; double salary; std::string toString(); }; #endif //STRUCTURESLAB_CALEBFONTENOT_STRUCTURES_H