From c715379c625935bd4b28bebb35f34721342cc7f3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 22 Dec 2015 19:29:04 +0200 Subject: Source file names fixup --- brep/repository-root | 53 ---------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 brep/repository-root (limited to 'brep/repository-root') diff --git a/brep/repository-root b/brep/repository-root deleted file mode 100644 index 006f163..0000000 --- a/brep/repository-root +++ /dev/null @@ -1,53 +0,0 @@ -// file : brep/repository-root -*- C++ -*- -// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd -// license : MIT; see accompanying LICENSE file - -#ifndef BREP_REPOSITORY_ROOT -#define BREP_REPOSITORY_ROOT - -#include - -#include -#include - -namespace brep -{ - class package_search; - class package_details; - class package_version_details; - class repository_details; - - class repository_root: public module - { - public: - repository_root (); - - private: - virtual bool - handle (request&, response&); - - virtual const cli::options& - cli_options () const {return options::repository_root::description ();} - - virtual option_descriptions - options (); - - virtual void - init (const name_values&); - - virtual void - init (cli::scanner&); - - virtual void - version (); - - private: - shared_ptr package_search_; - shared_ptr package_details_; - shared_ptr package_version_details_; - shared_ptr repository_details_; - shared_ptr options_; - }; -} - -#endif // BREP_REPOSITORY_ROOT -- cgit v1.1