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

12 lines
250 B
C++

//police.cpp
#ifndef __POLICE_CPP__
#define __POLICE_CPP__
#include "person.h"
#include "police.h"
Passport* Police::makePassport(Person &P) {
Name &N = P.getName();
Passport *tmp = new Passport(N);
return tmp;
};
#endif