aboutsummaryrefslogtreecommitdiff
path: root/libbuild2/dynamic.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2021-11-23 11:20:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2021-11-23 11:20:03 +0200
commitf5c7b962c4d3512f32df8c3bbd3370f846239b02 (patch)
tree2aff4e52f277ecac62ce1cb8bf302ffd0884666a /libbuild2/dynamic.hxx
parentb5083221dad8084deb4a7949cb9fc487aa09e080 (diff)
WIP: completedyndep
Diffstat (limited to 'libbuild2/dynamic.hxx')
-rw-r--r--libbuild2/dynamic.hxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/libbuild2/dynamic.hxx b/libbuild2/dynamic.hxx
deleted file mode 100644
index 395a839..0000000
--- a/libbuild2/dynamic.hxx
+++ /dev/null
@@ -1,33 +0,0 @@
-// file : libbuild2/dynamic.hxx -*- C++ -*-
-// license : MIT; see accompanying LICENSE file
-
-#ifndef LIBBUILD2_DYNAMIC_HXX
-#define LIBBUILD2_DYNAMIC_HXX
-
-#include <libbuild2/types.hxx>
-#include <libbuild2/forward.hxx>
-#include <libbuild2/utility.hxx>
-
-#include <libbuild2/action.hxx>
-#include <libbuild2/target.hxx>
-
-#include <libbuild2/export.hxx>
-
-// Additional functionality that is normally only useful for implementing
-// rules with dynamic dependencies.
-//
-namespace build2
-{
- class LIBBUILD2_SYMEXPORT dyndep_rule
- {
- public:
- // Update the target during the match phase. Return true if it has changed
- // or if the passed timestamp is not timestamp_unknown and is older than
- // the target.
- //
- static bool
- update (tracer&, action, const target&, timestamp);
- };
-}
-
-#endif // LIBBUILD2_DYNAMIC_HXX