aboutsummaryrefslogtreecommitdiff
path: root/odb/validator.hxx
blob: 623001c510fb357608280a3f3da221f6d3bc6952 (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
// file      : odb/validator.hxx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

#ifndef ODB_VALIDATOR_HXX
#define ODB_VALIDATOR_HXX

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

class validator
{
public:
  validator ();

  bool
  validate (options const&, semantics::unit&, semantics::path const&);

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

#endif // ODB_VALIDATOR_HXX