Commit b486bcf4 authored by Dominik Charousset's avatar Dominik Charousset

Remove obsolete file

parent 590faf33
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright (C) 2011 - 2014 *
* Dominik Charousset <dominik.charousset (at) haw-hamburg.de> *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENCE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
#ifndef CAF_TUPLE_CAST_HPP
#define CAF_TUPLE_CAST_HPP
#include <type_traits>
#include "caf/optional.hpp"
#include "caf/cow_tuple.hpp"
#include "caf/detail/matches.hpp"
#include "caf/detail/type_list.hpp"
namespace caf {
template <class... T>
optional<typename detail::tl_apply<
typename detail::tl_filter_not<detail::type_list<T...>, is_anything>::type,
cow_tuple
>::type>
tuple_cast(message) {
return none; //TODO: implement me
}
} // namespace caf
#endif // CAF_TUPLE_CAST_HPP
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment