mirror of
https://github.com/bdrtr/FINGER_DETECT.git
synced 2025-11-08 18:52:47 +00:00
16 lines
187 B
C++
16 lines
187 B
C++
#include "user.h"
|
|
#include "WString.h"
|
|
|
|
User::User(String name) {
|
|
this->name = name;
|
|
}
|
|
|
|
void User::setID(uint8_t ID) {
|
|
|
|
this->ID = ID;
|
|
}
|
|
|
|
uint8_t User::getID() {
|
|
|
|
return ID;
|
|
} |