aboutsummaryrefslogtreecommitdiff
path: root/brep/search
blob: 9670899f7b565631feb0a14415ffc4256741b724 (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
// 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 <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<search_options> options_;
  };
}

#endif // BREP_SEARCH