aboutsummaryrefslogtreecommitdiff
path: root/libbrep/types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbrep/types.hxx')
-rw-r--r--libbrep/types.hxx25
1 files changed, 15 insertions, 10 deletions
diff --git a/libbrep/types.hxx b/libbrep/types.hxx
index 65c9791..3b5777d 100644
--- a/libbrep/types.hxx
+++ b/libbrep/types.hxx
@@ -1,5 +1,4 @@
// file : libbrep/types.hxx -*- C++ -*-
-// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
#ifndef LIBBREP_TYPES_HXX
@@ -22,11 +21,12 @@
#include <odb/lazy-ptr.hxx>
-#include <libbutl/path.mxx>
-#include <libbutl/path-io.mxx>
-#include <libbutl/optional.mxx>
-#include <libbutl/timestamp.mxx>
-#include <libbutl/small-vector.mxx>
+#include <libbutl/url.hxx>
+#include <libbutl/path.hxx>
+#include <libbutl/path-io.hxx>
+#include <libbutl/optional.hxx>
+#include <libbutl/timestamp.hxx>
+#include <libbutl/small-vector.hxx>
namespace brep
{
@@ -50,7 +50,7 @@ namespace brep
using std::weak_ptr;
using std::vector;
- using butl::small_vector; // <libbutl/small-vector.mxx>
+ using butl::small_vector; // <libbutl/small-vector.hxx>
using strings = vector<string>;
using cstrings = vector<const char*>;
@@ -69,7 +69,7 @@ namespace brep
using std::generic_category;
- // <libbutl/optional.mxx>
+ // <libbutl/optional.hxx>
//
using butl::optional;
using butl::nullopt;
@@ -79,7 +79,7 @@ namespace brep
using odb::lazy_shared_ptr;
using odb::lazy_weak_ptr;
- // <libbutl/path.mxx>
+ // <libbutl/path.hxx>
//
using butl::path;
using butl::dir_path;
@@ -91,10 +91,15 @@ namespace brep
using butl::path_cast;
- // <libbutl/timestamp.mxx>
+ // <libbutl/url.hxx>
+ //
+ using butl::url;
+
+ // <libbutl/timestamp.hxx>
//
using butl::system_clock;
using butl::timestamp;
+ using butl::duration;
using butl::timestamp_nonexistent;
}