Initial commit
This commit is contained in:
24
application/source/user.c
Normal file
24
application/source/user.c
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
#include <array.h>
|
||||
|
||||
class user{
|
||||
|
||||
char * username;
|
||||
|
||||
int id;
|
||||
|
||||
int userlevel;
|
||||
|
||||
char * hash;
|
||||
|
||||
struct array * addresses = new array();
|
||||
|
||||
constructor() {
|
||||
|
||||
//printf("create array();\n");
|
||||
|
||||
//this->addresses = new array();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user