construct/include/ircd/m/matrix.h

99 lines
1.9 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_H
// required to disambiguate resolution around some overloads in this ns.
namespace ircd::m
{
#ifdef __clang__
using std::operator<;
using std::operator==;
using std::operator!=;
using ircd::json::at;
using ircd::json::get;
#endif
using ircd::operator!;
}
// explicit imports required for GCC or clang
namespace ircd::m
{
using ircd::hash;
}
/// Matrix Protocol System
namespace ircd::m
{
struct matrix;
IRCD_OVERLOAD(generate)
extern struct log::log log;
}
#include "name.h"
#include "error.h"
#include "self.h"
#include "init.h"
#include "id.h"
#include "event/event.h"
#include "get.h"
#include "query.h"
#include "dbs/dbs.h"
#include "vm.h"
#include "invite_3pid.h"
#include "createroom.h"
#include "room/room.h"
#include "user/user.h"
#include "users.h"
#include "rooms.h"
#include "rooms_summary.h"
#include "membership.h"
#include "filter.h"
#include "events.h"
#include "node.h"
#include "login.h"
#include "device.h"
#include "request.h"
#include "fed/fed.h"
#include "keys.h"
#include "edu.h"
#include "presence.h"
#include "typing.h"
#include "receipt.h"
#include "direct_to_device.h"
#include "txn.h"
#include "hook.h"
#include "visible.h"
#include "redacted.h"
#include "feds.h"
#include "app.h"
#include "sync.h"
#include "fetch.h"
#include "breadcrumb_rooms.h"
#include "media.h"
#include "search.h"
struct ircd::m::matrix
{
std::string module_path
{
fs::path_string(fs::base::LIB, "libircd_matrix")
};
ircd::module module
{
module_path
};
};