taskrambler
v0.1.8
Web server and task management solution.
|
#include "user.h"
#include "uuid.h"
#include "class.h"
#include "interface/serializable.h"
#include "interface/indexable.h"
#include "utils/memory.h"
Go to the source code of this file.
Functions | |
static int | userCtor (void *_this, va_list *params) |
static void | userDtor (void *_this) |
static void | userSerialize (void *_this, unsigned char **serialized, size_t *nserialized) |
static void | userUnserialize (void *_this, const unsigned char *serialized, size_t nserialized) |
static Uuid | userIndexUuid (void *_this, Uuid namespace) |
INIT_IFACE (Class, userCtor, userDtor, NULL) | |
INIT_IFACE (Serializable, userSerialize, userUnserialize) | |
INIT_IFACE (Indexable, userIndexUuid) | |
CREATE_CLASS (User, NULL, IFACE(Class), IFACE(Serializable), IFACE(Indexable)) | |
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file user.c.
INIT_IFACE | ( | Serializable | , |
userSerialize | , | ||
userUnserialize | |||
) |
INIT_IFACE | ( | Indexable | , |
userIndexUuid | |||
) |
|
static |
Definition at line 35 of file user.c.
References memMalloc().
|
static |
|
static |
Definition at line 148 of file user.c.
References uuidVersion3().
|
static |
Definition at line 101 of file user.c.
References memMalloc().
|
static |
Definition at line 122 of file user.c.
References memMalloc().