aboutsummaryrefslogtreecommitdiff
path: root/brep/database
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-04-21 16:05:13 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-04-21 16:05:13 +0200
commit2a0f39b29c1bea6a4497c0f1826052ffa453af9e (patch)
tree283f6bf1569c1b9f00b6e25fe986ccfff8a8629f /brep/database
parentc6b4d6c6489731eedba606d3c85c4319c4478b50 (diff)
Move module implementation from brep/ to mod/
Diffstat (limited to 'brep/database')
-rw-r--r--brep/database26
1 files changed, 0 insertions, 26 deletions
diff --git a/brep/database b/brep/database
deleted file mode 100644
index d29d4a5..0000000
--- a/brep/database
+++ /dev/null
@@ -1,26 +0,0 @@
-// file : brep/database -*- C++ -*-
-// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BREP_DATABASE
-#define BREP_DATABASE
-
-#include <odb/forward.hxx> // database
-
-#include <brep/types>
-#include <brep/utility>
-
-#include <brep/options>
-
-namespace brep
-{
- // Returns pointer to the shared database instance, creating one on the
- // first call. On subsequent calls ensures passed host and port equals
- // to ones of the existing database instance throwing runtime_error
- // otherwise. Is not thread-safe.
- //
- shared_ptr<odb::core::database>
- shared_database (const options::db&);
-}
-
-#endif // BREP_DATABASE