blob: e160e2922ec82ff7e87388376a6df22b4c29d728 (
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
|
// file : libbrep/utility.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2018 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> // casecmp(), 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::casecmp;
using butl::reverse_iterate;
}
#include <libbrep/version.hxx>
#endif // LIBBREP_UTILITY_HXX
|