summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/assert/binder.hh
blob: 7ede6d7e1f9f58395efadc55fccd6486d2e13add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 ** \file assert/binder.hh
 ** \brief Declaration of assert::Binder.
 */

#pragma once

#include <bind/binder.hh>

namespace assert {

  class Binder
    : public bind::Binder
  {
  public:
    using super_class = bind::Binder;

    // Build a Binder
    Binder();
  };

} // namespace assert