0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-07 02:58:39 +02:00
construct/include/ircd/m/user.h

36 lines
968 B
C
Raw Normal View History

2018-02-04 03:22:01 +01:00
// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
2017-09-25 03:05:42 +02:00
#define HAVE_IRCD_M_USER_H
2017-09-25 03:05:42 +02:00
namespace ircd::m
{
struct user;
bool my(const user &);
bool exists(const user &);
bool exists(const id::user &);
user create(const id::user &, const json::members &args = {});
2017-09-25 03:05:42 +02:00
}
#include "user/user.h"
#include "user/room.h"
#include "user/rooms.h"
#include "user/mitsein.h"
#include "user/events.h"
#include "user/profile.h"
#include "user/account_data.h"
#include "user/room_account_data.h"
#include "user/room_tags.h"
#include "user/filter.h"
#include "user/ignores.h"