2017-09-12 16:58:14 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-09-12 16:58:14 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-09-12 16:58:14 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-11-08 20:45:30 +04:00
|
|
|
// rpl - reactive programming library
|
|
|
|
|
2017-09-12 16:58:14 +03:00
|
|
|
#include <rpl/lifetime.h>
|
|
|
|
#include <rpl/consumer.h>
|
|
|
|
#include <rpl/producer.h>
|
|
|
|
#include <rpl/event_stream.h>
|
|
|
|
|
2017-09-21 22:21:33 +03:00
|
|
|
#include <rpl/range.h>
|
2017-09-12 16:58:14 +03:00
|
|
|
#include <rpl/complete.h>
|
|
|
|
#include <rpl/fail.h>
|
|
|
|
#include <rpl/never.h>
|
|
|
|
|
2017-10-01 12:39:07 +03:00
|
|
|
#include <rpl/take.h>
|
2018-05-22 00:31:46 +03:00
|
|
|
#include <rpl/skip.h>
|
2017-09-12 16:58:14 +03:00
|
|
|
#include <rpl/then.h>
|
|
|
|
#include <rpl/deferred.h>
|
|
|
|
#include <rpl/map.h>
|
2017-09-18 19:39:45 +03:00
|
|
|
#include <rpl/mappers.h>
|
2017-10-20 19:18:26 +03:00
|
|
|
#include <rpl/merge.h>
|
2017-09-12 16:58:14 +03:00
|
|
|
#include <rpl/filter.h>
|
|
|
|
#include <rpl/distinct_until_changed.h>
|
2017-09-27 14:16:05 +03:00
|
|
|
#include <rpl/type_erased.h>
|
2017-09-12 16:58:14 +03:00
|
|
|
#include <rpl/flatten_latest.h>
|
2017-09-18 19:39:45 +03:00
|
|
|
#include <rpl/combine.h>
|
2017-09-19 17:51:01 +03:00
|
|
|
#include <rpl/combine_previous.h>
|
|
|
|
#include <rpl/variable.h>
|
2017-09-12 16:58:14 +03:00
|
|
|
|
|
|
|
#include <rpl/before_next.h>
|
2017-09-19 17:51:01 +03:00
|
|
|
#include <rpl/after_next.h>
|