mirror of
https://github.com/bdrtr/FINGER_DETECT.git
synced 2025-11-09 03:02:47 +00:00
22 lines
264 B
C++
22 lines
264 B
C++
#ifndef FPROCESS_H
|
|
#define FPROCESS_H
|
|
|
|
#include "user.h"
|
|
|
|
class fProcess{
|
|
|
|
|
|
public:
|
|
|
|
fProcess();
|
|
void Initialize();
|
|
void enRoll(User usr);
|
|
uint8_t logIn();
|
|
void showUserList();
|
|
void delDB();
|
|
private:
|
|
String name;
|
|
|
|
};
|
|
|
|
#endif |