aboutsummaryrefslogtreecommitdiff
path: root/brep/package-search
blob: 156ed68dd0909ef42d8458bbe570915bd2fd4c29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// file      : brep/package-search -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BREP_PACKAGE_SEARCH
#define BREP_PACKAGE_SEARCH

#include <memory> // shared_ptr

#include <odb/forward.hxx> // database

#include <brep/module>
#include <brep/options>

namespace brep
{
  class package_search: public module
  {
  private:
    virtual void
    handle (request&, response&);

    virtual void
    init (cli::scanner&);

  private:
    std::shared_ptr<options::package_search> options_;
    std::shared_ptr<odb::core::database> db_;
  };
}

#endif // BREP_PACKAGE_SEARCH