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, 0 insertions, 30 deletions
diff --git a/build2/cli/module.hxx b/build2/cli/module.hxx
deleted file mode 100644
index 70f6ba8..0000000
--- a/build2/cli/module.hxx
+++ /dev/null
@@ -1,30 +0,0 @@
-// 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