aboutsummaryrefslogtreecommitdiff
path: root/bbot/types-parsers.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-03-16 20:21:59 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-03-26 20:00:31 +0300
commit2af2c4f092aa7efffe839ec615c06d22cf43cc3b (patch)
treee84676dbf273602fdf1f3541171df9dad7060daf /bbot/types-parsers.hxx
parent392c6003321047421467e07eac31e12875377ead (diff)
Add support for interactive builds
Diffstat (limited to 'bbot/types-parsers.hxx')
-rw-r--r--bbot/types-parsers.hxx9
1 files changed, 9 insertions, 0 deletions
diff --git a/bbot/types-parsers.hxx b/bbot/types-parsers.hxx
index 1657086..23fc95b 100644
--- a/bbot/types-parsers.hxx
+++ b/bbot/types-parsers.hxx
@@ -7,6 +7,8 @@
#ifndef BBOT_TYPES_PARSERS_HXX
#define BBOT_TYPES_PARSERS_HXX
+#include <libbbot/manifest.hxx>
+
#include <bbot/types.hxx>
namespace bbot
@@ -38,6 +40,13 @@ namespace bbot
static void
parse (standard_version&, bool&, scanner&);
};
+
+ template <>
+ struct parser<interactive_mode>
+ {
+ static void
+ parse (interactive_mode&, bool&, scanner&);
+ };
}
}