blob: 1789b4774653ebac5a38c6a1a57c5466ca116ba8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file combine/binder.hh
** \brief Declaration of combine::Binder.
**/
#pragma once
#include <object/binder.hh>
#include <overload/binder.hh>
namespace combine
{
/// \brief Compute bindings with support for objects and overload.
// FIXME: Some code was deleted here (class Binder inheriting from object::Binder and overload::Binder).
} // namespace combine
|