aboutsummaryrefslogtreecommitdiff
path: root/bdep/ci-types.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2019-04-17 22:41:20 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2019-04-26 20:29:46 +0300
commit1540e984279d25e5a83894216c3610990528b95c (patch)
treebf99a54444722c47e0c1429dfe18c7cca9069b0b /bdep/ci-types.hxx
parentbf02b66c61d941a60e45520ef77f677dad36557e (diff)
Add override options to bdep-ci
Namely the options are: --override, --overrides-file, --builds and --build-email.
Diffstat (limited to 'bdep/ci-types.hxx')
-rw-r--r--bdep/ci-types.hxx22
1 files changed, 22 insertions, 0 deletions
diff --git a/bdep/ci-types.hxx b/bdep/ci-types.hxx
new file mode 100644
index 0000000..4b2ab6d
--- /dev/null
+++ b/bdep/ci-types.hxx
@@ -0,0 +1,22 @@
+// file : bdep/ci-types.hxx -*- C++ -*-
+// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BDEP_CI_TYPES_HXX
+#define BDEP_CI_TYPES_HXX
+
+#include <bdep/types.hxx>
+
+#include <libbutl/manifest-types.mxx>
+
+namespace bdep
+{
+ // This type is intended for accumulating package manifest override values
+ // from all the override-related options (see ci-parsers.hxx for details).
+ //
+ class ci_override: public vector<butl::manifest_name_value>
+ {
+ };
+}
+
+#endif // BDEP_CI_TYPES_HXX