aboutsummaryrefslogtreecommitdiff
path: root/brep/repository-details
diff options
context:
space:
mode:
Diffstat (limited to 'brep/repository-details')
-rw-r--r--brep/repository-details36
1 files changed, 0 insertions, 36 deletions
diff --git a/brep/repository-details b/brep/repository-details
deleted file mode 100644
index 7efc6a6..0000000
--- a/brep/repository-details
+++ /dev/null
@@ -1,36 +0,0 @@
-// file : brep/repository-details -*- C++ -*-
-// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BREP_REPOSITORY_DETAILS
-#define BREP_REPOSITORY_DETAILS
-
-#include <odb/forward.hxx> // database
-
-#include <brep/types>
-
-#include <brep/module>
-#include <brep/options>
-
-namespace brep
-{
- class repository_details: public module
- {
- public:
- virtual bool
- handle (request&, response&);
-
- virtual const cli::options&
- cli_options () const {return options::repository_details::description ();}
-
- private:
- virtual void
- init (cli::scanner&);
-
- private:
- shared_ptr<options::repository_details> options_;
- shared_ptr<odb::core::database> db_;
- };
-}
-
-#endif // BREP_REPOSITORY_DETAILS