summaryrefslogtreecommitdiff
path: root/xsd/cxx/parser/validator.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'xsd/cxx/parser/validator.hxx')
-rw-r--r--xsd/cxx/parser/validator.hxx11
1 files changed, 5 insertions, 6 deletions
diff --git a/xsd/cxx/parser/validator.hxx b/xsd/cxx/parser/validator.hxx
index 35c13fc..036e38c 100644
--- a/xsd/cxx/parser/validator.hxx
+++ b/xsd/cxx/parser/validator.hxx
@@ -6,27 +6,26 @@
#ifndef CXX_PARSER_VALIDATOR_HXX
#define CXX_PARSER_VALIDATOR_HXX
+#include <xsd.hxx>
+#include <types.hxx>
+
#include <cxx/parser/elements.hxx>
#include <cxx/parser/options.hxx>
-#include <xsd.hxx>
-
namespace CXX
{
namespace Parser
{
- using namespace Cult::Types;
-
class Validator
{
public:
Validator (); // Dummy ctor, helps with long symbols on HP-UX.
- Boolean
+ bool
validate (options const&,
SemanticGraph::Schema&,
SemanticGraph::Path const& tu,
- Boolean gen_driver,
+ bool gen_driver,
const WarningSet& disabled_warnings);
};
}