sled/3party/rxcpp/rx-observable-fwd.hpp

27 lines
585 B
C++
Raw Normal View History

2024-03-14 20:50:17 +08:00
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
#pragma once
#if !defined(RXCPP_RX_OBSERVABLE_FWD_HPP)
#define RXCPP_RX_OBSERVABLE_FWD_HPP
#include <type_traits>
namespace rxcpp {
template<class T>
class dynamic_observable;
template<
class T = void,
class SourceObservable = typename std::conditional<std::is_same<T, void>::value,
void, dynamic_observable<T>>::type>
class observable;
template<class T, class Source>
observable<T> make_observable_dynamic(Source&&);
}
#endif