9 lines
134 B
C++
9 lines
134 B
C++
#ifndef AUTH_H
|
|
#define AUTH_H
|
|
|
|
#include <string>
|
|
#include "user.h"
|
|
|
|
int authentifier(std::string login, std::string password);
|
|
|
|
#endif |