Files
Avancerad_CPP/Lab3/police.h
2026-03-05 13:16:26 +01:00

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