summaryrefslogtreecommitdiff
path: root/xsd/cxx/tree/validator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd/cxx/tree/validator.hxx')
-rw-r--r--xsd/cxx/tree/validator.hxx33
1 files changed, 33 insertions, 0 deletions
diff --git a/xsd/cxx/tree/validator.hxx b/xsd/cxx/tree/validator.hxx
new file mode 100644
index 0000000..f7fdc34
--- /dev/null
+++ b/xsd/cxx/tree/validator.hxx
@@ -0,0 +1,33 @@
+// file : xsd/cxx/tree/validator.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef CXX_TREE_VALIDATOR_HXX
+#define CXX_TREE_VALIDATOR_HXX
+
+#include <cxx/tree/elements.hxx>
+#include <cxx/tree/cli.hxx>
+
+#include <xsd.hxx>
+
+namespace CXX
+{
+ namespace Tree
+ {
+ class Validator
+ {
+ public:
+ Validator (); // Dummy ctor, helps with long symbols on HP-UX.
+
+ Boolean
+ validate (CLI::Options const& options,
+ SemanticGraph::Schema&,
+ SemanticGraph::Path const& tu,
+ const WarningSet& disabled_warnings,
+ Counts const& counts);
+ };
+ }
+}
+
+#endif // CXX_TREE_VALIDATOR_HXX