20 lines
370 B
C++
20 lines
370 B
C++
//
|
|
// Created by caleb on 3/22/24.
|
|
//
|
|
|
|
#ifndef STRUCTURESLAB_CALEBFONTENOT_STRUCTURES_H
|
|
#define STRUCTURESLAB_CALEBFONTENOT_STRUCTURES_H
|
|
|
|
#include <string>
|
|
|
|
struct Employee {
|
|
Employee();
|
|
Employee(char * pName, double salary);
|
|
~Employee();
|
|
char * pName;
|
|
double salary;
|
|
std::string toString();
|
|
};
|
|
|
|
#endif //STRUCTURESLAB_CALEBFONTENOT_STRUCTURES_H
|