aboutsummaryrefslogtreecommitdiff
path: root/odb/validator.hxx
blob: 5f5398a2466c2ce34c95e59eb470bb7e399cd6b5 (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
// file      : odb/validator.hxx
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : GNU GPL v3; see accompanying LICENSE file

#ifndef ODB_VALIDATOR_HXX
#define ODB_VALIDATOR_HXX

#include <odb/options.hxx>
#include <odb/semantics/unit.hxx>

class validator
{
public:
  struct failed {};

  // The first pass is performed before processing. The second -- after.
  //
  void
  validate (options const&,
            semantics::unit&,
            semantics::path const&,
            unsigned short pass);

  validator () {}

private:
  validator (validator const&);
  validator& operator= (validator const&);
};

#endif // ODB_VALIDATOR_HXX