aboutsummaryrefslogtreecommitdiff
path: root/brep/utility
blob: 2a4161432faf0d2a5f7d0e1f47cbeb670c9feb2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : brep/utility -*- C++ -*-
// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BREP_UTILITY
#define BREP_UTILITY

#include <string>  // to_string()
#include <memory>  // make_shared()
#include <cassert>
#include <utility> // move()

namespace brep
{
  using std::move;
  using std::make_shared;
  using std::to_string;
};

#endif // BREP_UTILITY