aboutsummaryrefslogtreecommitdiff
path: root/brep/search
blob: 9ea93454a864f0c6c3f1a51bfe732a3e8c548d75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// file      : brep/search -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

#ifndef BREP_SEARCH
#define BREP_SEARCH

#include <brep/module>

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

#endif // BREP_SEARCH