aboutsummaryrefslogtreecommitdiff
path: root/build2/version
diff options
context:
space:
mode:
Diffstat (limited to 'build2/version')
-rw-r--r--build2/version/init.cxx22
-rw-r--r--build2/version/init.hxx (renamed from build2/version/init)14
-rw-r--r--build2/version/module.cxx2
-rw-r--r--build2/version/module.hxx (renamed from build2/version/module)14
-rw-r--r--build2/version/rule.cxx24
-rw-r--r--build2/version/rule.hxx (renamed from build2/version/rule)14
-rw-r--r--build2/version/snapshot-git.cxx2
-rw-r--r--build2/version/snapshot.cxx4
-rw-r--r--build2/version/snapshot.hxx (renamed from build2/version/snapshot)14
9 files changed, 55 insertions, 55 deletions
diff --git a/build2/version/init.cxx b/build2/version/init.cxx
index cce8de9..699495a 100644
--- a/build2/version/init.cxx
+++ b/build2/version/init.cxx
@@ -2,21 +2,21 @@
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#include <build2/version/init>
+#include <build2/version/init.hxx>
-#include <butl/manifest-parser>
-#include <butl/manifest-serializer>
+#include <libbutl/manifest-parser.hxx>
+#include <libbutl/manifest-serializer.hxx>
-#include <build2/scope>
-#include <build2/context>
-#include <build2/variable>
-#include <build2/diagnostics>
+#include <build2/scope.hxx>
+#include <build2/context.hxx>
+#include <build2/variable.hxx>
+#include <build2/diagnostics.hxx>
-#include <build2/dist/module>
+#include <build2/dist/module.hxx>
-#include <build2/version/rule>
-#include <build2/version/module>
-#include <build2/version/snapshot>
+#include <build2/version/rule.hxx>
+#include <build2/version/module.hxx>
+#include <build2/version/snapshot.hxx>
using namespace std;
using namespace butl;
diff --git a/build2/version/init b/build2/version/init.hxx
index 8ffb999..54beae1 100644
--- a/build2/version/init
+++ b/build2/version/init.hxx
@@ -1,14 +1,14 @@
-// file : build2/version/init -*- C++ -*-
+// file : build2/version/init.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#ifndef BUILD2_VERSION_INIT
-#define BUILD2_VERSION_INIT
+#ifndef BUILD2_VERSION_INIT_HXX
+#define BUILD2_VERSION_INIT_HXX
-#include <build2/types>
-#include <build2/utility>
+#include <build2/types.hxx>
+#include <build2/utility.hxx>
-#include <build2/module>
+#include <build2/module.hxx>
namespace build2
{
@@ -28,4 +28,4 @@ namespace build2
}
}
-#endif // BUILD2_VERSION_INIT
+#endif // BUILD2_VERSION_INIT_HXX
diff --git a/build2/version/module.cxx b/build2/version/module.cxx
index 9865271..acc629a 100644
--- a/build2/version/module.cxx
+++ b/build2/version/module.cxx
@@ -2,7 +2,7 @@
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#include <build2/version/module>
+#include <build2/version/module.hxx>
using namespace std;
diff --git a/build2/version/module b/build2/version/module.hxx
index 1e6fb7a..45b1a47 100644
--- a/build2/version/module
+++ b/build2/version/module.hxx
@@ -1,16 +1,16 @@
-// file : build2/version/module -*- C++ -*-
+// file : build2/version/module.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#ifndef BUILD2_VERSION_MODULE
-#define BUILD2_VERSION_MODULE
+#ifndef BUILD2_VERSION_MODULE_HXX
+#define BUILD2_VERSION_MODULE_HXX
#include <map>
-#include <build2/types>
-#include <build2/utility>
+#include <build2/types.hxx>
+#include <build2/utility.hxx>
-#include <build2/module>
+#include <build2/module.hxx>
namespace build2
{
@@ -33,4 +33,4 @@ namespace build2
}
}
-#endif // BUILD2_VERSION_MODULE
+#endif // BUILD2_VERSION_MODULE_HXX
diff --git a/build2/version/rule.cxx b/build2/version/rule.cxx
index 3e143c1..d9669da 100644
--- a/build2/version/rule.cxx
+++ b/build2/version/rule.cxx
@@ -2,18 +2,18 @@
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#include <build2/version/rule>
-
-#include <build2/depdb>
-#include <build2/scope>
-#include <build2/target>
-#include <build2/context>
-#include <build2/function>
-#include <build2/algorithm>
-#include <build2/filesystem>
-#include <build2/diagnostics>
-
-#include <build2/version/module>
+#include <build2/version/rule.hxx>
+
+#include <build2/depdb.hxx>
+#include <build2/scope.hxx>
+#include <build2/target.hxx>
+#include <build2/context.hxx>
+#include <build2/function.hxx>
+#include <build2/algorithm.hxx>
+#include <build2/filesystem.hxx>
+#include <build2/diagnostics.hxx>
+
+#include <build2/version/module.hxx>
using namespace std;
using namespace butl;
diff --git a/build2/version/rule b/build2/version/rule.hxx
index 186df59..e686694 100644
--- a/build2/version/rule
+++ b/build2/version/rule.hxx
@@ -1,14 +1,14 @@
-// file : build2/version/rule -*- C++ -*-
+// file : build2/version/rule.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#ifndef BUILD2_VERSION_RULE
-#define BUILD2_VERSION_RULE
+#ifndef BUILD2_VERSION_RULE_HXX
+#define BUILD2_VERSION_RULE_HXX
-#include <build2/types>
-#include <build2/utility>
+#include <build2/types.hxx>
+#include <build2/utility.hxx>
-#include <build2/rule>
+#include <build2/rule.hxx>
namespace build2
{
@@ -50,4 +50,4 @@ namespace build2
}
}
-#endif // BUILD2_VERSION_RULE
+#endif // BUILD2_VERSION_RULE_HXX
diff --git a/build2/version/snapshot-git.cxx b/build2/version/snapshot-git.cxx
index b5db470..d91eb62 100644
--- a/build2/version/snapshot-git.cxx
+++ b/build2/version/snapshot-git.cxx
@@ -2,7 +2,7 @@
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#include <build2/version/snapshot>
+#include <build2/version/snapshot.hxx>
using namespace std;
diff --git a/build2/version/snapshot.cxx b/build2/version/snapshot.cxx
index be6c147..00528c7 100644
--- a/build2/version/snapshot.cxx
+++ b/build2/version/snapshot.cxx
@@ -2,9 +2,9 @@
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#include <build2/version/snapshot>
+#include <build2/version/snapshot.hxx>
-#include <build2/filesystem>
+#include <build2/filesystem.hxx>
using namespace std;
diff --git a/build2/version/snapshot b/build2/version/snapshot.hxx
index a279729..b7e6dd7 100644
--- a/build2/version/snapshot
+++ b/build2/version/snapshot.hxx
@@ -1,14 +1,14 @@
-// file : build2/version/snapshot -*- C++ -*-
+// file : build2/version/snapshot.hxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license : MIT; see accompanying LICENSE file
-#ifndef BUILD2_VERSION_SNAPSHOT
-#define BUILD2_VERSION_SNAPSHOT
+#ifndef BUILD2_VERSION_SNAPSHOT_HXX
+#define BUILD2_VERSION_SNAPSHOT_HXX
-#include <build2/types>
-#include <build2/utility>
+#include <build2/types.hxx>
+#include <build2/utility.hxx>
-#include <build2/scope>
+#include <build2/scope.hxx>
namespace build2
{
@@ -30,4 +30,4 @@ namespace build2
}
}
-#endif // BUILD2_VERSION_SNAPSHOT
+#endif // BUILD2_VERSION_SNAPSHOT_HXX