15 lines
200 B
C++
15 lines
200 B
C++
#ifndef BUREAUCRATE_HPP
|
|
# define BUREAUCRATE_HPP
|
|
|
|
class Bureaucrate {
|
|
public:
|
|
Bureaucrate();
|
|
Bureaucrate(std::string name, int grade);
|
|
|
|
private:
|
|
std::string const _name;
|
|
int _grade;
|
|
}
|
|
|
|
#endif
|