blob: 1925d01dccee05593403395ef5c4e0c7b80716a1 (
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
38
39
40
|
// file : libbrep/utility.hxx -*- C++ -*-
// 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 <algorithm> // *
#include <libbutl/utility.hxx> // icasecmp(), reverse_iterate(),
// operator<<(ostream, exception), etc
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.hxx>
//
using butl::utf8;
using butl::trim;
using butl::trim_left;
using butl::trim_right;
using butl::icasecmp;
using butl::reverse_iterate;
}
#include <libbrep/version.hxx>
#endif // LIBBREP_UTILITY_HXX
|