// 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 namespace rxcpp { template class dynamic_observable; template< class T = void, class SourceObservable = typename std::conditional::value, void, dynamic_observable>::type> class observable; template observable make_observable_dynamic(Source&&); } #endif