0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-19 23:18:54 +02:00
construct/include/ircd/m/fed/event_near.h

46 lines
996 B
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2022 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_FED_EVENT_NEAR_H
namespace ircd::m::fed
{
struct event_near;
}
struct ircd::m::fed::event_near
:request
{
explicit operator json::object() const;
/// if ts > 0, dir=f;
/// if <= 0, dir=b;
/// if ts == 0, ts = now, dir = b;
event_near(const m::room::id &,
const mutable_buffer &,
const int64_t ts,
opts);
event_near() = default;
};
inline
ircd::m::fed::event_near::operator
ircd::json::object()
const
{
const json::object object
{
in.content
};
return object;
}