9 lines
164 B
C++
9 lines
164 B
C++
#ifndef SECURITY_CHECKER_H
|
|
#define SECURITY_CHECKER_H
|
|
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
bool check_country(std::string country);
|
|
|
|
#endif SECURITY_CHECKER_H |