/usr/include/boost/poly_collection
Edit: /usr/include/boost/poly_collection/function_collection_fwd.hpp (1455B)
/* Copyright 2016 Joaquin M Lopez Munoz.
* Distributed under the Boost Software License, Version 1.0.
* (See accompanying file LICENSE_1_0.txt or copy at
* http://www.boost.org/LICENSE_1_0.txt)
*
* See http://www.boost.org/libs/poly_collection for library home page.
*/
#ifndef BOOST_POLY_COLLECTION_FUNCTION_COLLECTION_FWD_HPP
#define BOOST_POLY_COLLECTION_FUNCTION_COLLECTION_FWD_HPP
#if defined(_MSC_VER)
#pragma once
#endif
#include
namespace boost{
namespace poly_collection{
namespace detail{
template struct function_model;
}
template
using function_collection_value_type=
typename detail::function_model::value_type;
template<
typename Signature,
typename Allocator=std::allocator>
>
class function_collection;
template
bool operator==(
const function_collection& x,
const function_collection& y);
template
bool operator!=(
const function_collection& x,
const function_collection& y);
template
void swap(
function_collection& x,
function_collection& y);
} /* namespace poly_collection */
using poly_collection::function_collection;
} /* namespace boost */
#endif