Advertisement
Guest User

auth.h

a guest
Aug 23rd, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. #ifndef AUTH_H
  2. #define AUTH_H
  3. #include <iostream>
  4.  
  5. using std::string;
  6.  
  7. namespace auth{
  8.     class User{
  9.     public:
  10.         std::string login, password;
  11.  
  12.         bool authenticate(string login, string password);
  13.         bool create(string login, string password);
  14.     };
  15. }
  16.  
  17. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement