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

#ifndef ODB_PROCESSOR_HXX
#define ODB_PROCESSOR_HXX

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

class processor_failed {};

// Pass one is very early processing before any validation has been
// done.
//
void
process (options const&,
         features&,
         semantics::unit&,
         semantics::path const&,
         unsigned short pass);

#endif // ODB_PROCESSOR_HXX