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

#ifndef BREP_VIEW
#define BREP_VIEW

#include <brep/module>

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

#endif // BREP_VIEW