mirror of
https://github.com/matrix-construct/construct
synced 2024-10-31 19:08:59 +01:00
29 lines
1.1 KiB
C++
29 lines
1.1 KiB
C++
// 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
|
|
#define HAVE_IRCD_M_ROOMS_H
|
|
|
|
/// Convenience iterface for iterations of rooms
|
|
///
|
|
namespace ircd::m::rooms
|
|
{
|
|
// All rooms known to IRCd
|
|
void for_each(const room::id::closure_bool &);
|
|
void for_each(const room::id::closure &);
|
|
void for_each(const room::closure_bool &);
|
|
void for_each(const room::closure &);
|
|
|
|
// All rooms for a user (alias to interface in user::)
|
|
void for_each(const user &, const string_view &membership, const user::rooms::closure_bool &);
|
|
void for_each(const user &, const string_view &membership, const user::rooms::closure &);
|
|
void for_each(const user &, const user::rooms::closure_bool &);
|
|
void for_each(const user &, const user::rooms::closure &);
|
|
}
|