From 0ffb0a1a0a13d07c4448f7752232d8854b790623 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Sun, 30 Apr 2017 23:21:12 +0300 Subject: Add hxx extension for headers and lib prefix for library dirs --- bbot/types-parsers.hxx | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 bbot/types-parsers.hxx (limited to 'bbot/types-parsers.hxx') diff --git a/bbot/types-parsers.hxx b/bbot/types-parsers.hxx new file mode 100644 index 0000000..eef3418 --- /dev/null +++ b/bbot/types-parsers.hxx @@ -0,0 +1,38 @@ +// file : bbot/types-parsers.hxx -*- C++ -*- +// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd +// license : TBC; see accompanying LICENSE file + +// CLI parsers, included into the generated source files. +// + +#ifndef BBOT_TYPES_PARSERS_HXX +#define BBOT_TYPES_PARSERS_HXX + +#include + +namespace bbot +{ + namespace cli + { + class scanner; + + template + struct parser; + + template <> + struct parser + { + static void + parse (path&, bool&, scanner&); + }; + + template <> + struct parser + { + static void + parse (dir_path&, bool&, scanner&); + }; + } +} + +#endif // BBOT_TYPES_PARSERS_HXX -- cgit v1.1