summaryrefslogtreecommitdiff
path: root/odb/odb/processor.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/odb/processor.hxx')
-rw-r--r--odb/odb/processor.hxx23
1 files changed, 23 insertions, 0 deletions
diff --git a/odb/odb/processor.hxx b/odb/odb/processor.hxx
new file mode 100644
index 0000000..1e70cab
--- /dev/null
+++ b/odb/odb/processor.hxx
@@ -0,0 +1,23 @@
+// file : odb/processor.hxx
+// 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