7 lines
77 B
C++
7 lines
77 B
C++
#pragma once
|
|
#include "Employee.h"
|
|
class ITExecutive : public Employee
|
|
{
|
|
};
|
|
|