aboutsummaryrefslogtreecommitdiff
path: root/build2/cli/module.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cli/module.hxx')
-rw-r--r--build2/cli/module.hxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/build2/cli/module.hxx b/build2/cli/module.hxx
new file mode 100644
index 0000000..70f6ba8
--- /dev/null
+++ b/build2/cli/module.hxx
@@ -0,0 +1,30 @@
+// file : build2/cli/module.hxx -*- C++ -*-
+// license : MIT; see accompanying LICENSE file
+
+#ifndef BUILD2_CLI_MODULE_HXX
+#define BUILD2_CLI_MODULE_HXX
+
+#include <libbuild2/types.hxx>
+#include <libbuild2/utility.hxx>
+
+#include <libbuild2/module.hxx>
+
+#include <build2/cli/rule.hxx>
+
+namespace build2
+{
+ namespace cli
+ {
+ class module: public build2::module,
+ public virtual data,
+ public compile_rule
+ {
+ public:
+ explicit
+ module (data&& d)
+ : data (move (d)), compile_rule (move (d)) {}
+ };
+ }
+}
+
+#endif // BUILD2_CLI_MODULE_HXX