15 lines
240 B
C++
15 lines
240 B
C++
//police.h
|
|
|
|
#ifndef __POLICE_H__
|
|
|
|
#define __POLICE_H__
|
|
|
|
#include "passport.h"
|
|
|
|
#include "person.h"
|
|
|
|
class Person;
|
|
|
|
class Police {
|
|
|
|
public:
|
|
|
|
Police(){}
|
|
|
|
~Police(){}
|
|
|
|
Passport *makePassport(Person &P);
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|