aboutsummaryrefslogtreecommitdiff
path: root/brep/search
blob: 02838599bbb00f3e976c7048d6844a4b9b8623ed (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/search -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#ifndef BREP_SEARCH
#define BREP_SEARCH

#include <memory> // shared_ptr

#include <odb/database.hxx>

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

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

    virtual void
    init (cli::scanner&);

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

#endif // BREP_SEARCH