aboutsummaryrefslogtreecommitdiff
path: root/bdep/ci-types.hxx
diff options
context:
space:
mode:
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