aboutsummaryrefslogtreecommitdiff
path: root/libbrep/utility.hxx
blob: 8c4c57931bc95478a5bde0e9f1fb0d16ac154e51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// file      : libbrep/utility.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef LIBBREP_UTILITY_HXX
#define LIBBREP_UTILITY_HXX

#include <memory>   // make_shared()
#include <string>   // to_string()
#include <utility>  // move(), forward(), declval(), make_pair()
#include <cassert>  // assert()
#include <iterator> // make_move_iterator()

#include <libbutl/utility.mxx> // icasecmp(), reverse_iterate(),
                               // operator<<(ostream, exception)

namespace brep
{
  using std::move;
  using std::forward;
  using std::declval;

  using std::make_pair;
  using std::make_shared;
  using std::make_move_iterator;
  using std::to_string;

  // <libbutl/utility.mxx>
  //
  using butl::utf8;
  using butl::icasecmp;
  using butl::reverse_iterate;
}

#include <libbrep/version.hxx>

#endif // LIBBREP_UTILITY_HXX