aboutsummaryrefslogtreecommitdiff
path: root/libxsd-frontend/generators/dependencies.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-15 22:23:46 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-25 13:39:56 +0300
commit949a9f572341b6cd07690f0b78b1b1941d320055 (patch)
treea4b9a32fb5a4cd6a46a17718cc854697df49c920 /libxsd-frontend/generators/dependencies.hxx
parent061b59ec50c40e8757c5e9237f45a2c7ade36d62 (diff)
Switch to build2
Diffstat (limited to 'libxsd-frontend/generators/dependencies.hxx')
-rw-r--r--libxsd-frontend/generators/dependencies.hxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/libxsd-frontend/generators/dependencies.hxx b/libxsd-frontend/generators/dependencies.hxx
new file mode 100644
index 0000000..564e713
--- /dev/null
+++ b/libxsd-frontend/generators/dependencies.hxx
@@ -0,0 +1,31 @@
+// file : libxsd-frontend/generators/dependencies.hxx
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef LIBXSD_FRONTEND_GENERATORS_DEPENDENCIES_HXX
+#define LIBXSD_FRONTEND_GENERATORS_DEPENDENCIES_HXX
+
+#include <vector>
+
+#include <libxsd-frontend/types.hxx>
+
+#include <libxsd-frontend/semantic-graph/elements.hxx> // Path
+#include <libxsd-frontend/semantic-graph/schema.hxx>
+
+namespace XSDFrontend
+{
+ namespace Generators
+ {
+ // Return the list of included/imported schema paths (transitively and
+ // including the main schema file) which can then be used to produce
+ // make dependencies, etc.
+ //
+ class Dependencies
+ {
+ public:
+ std::vector<SemanticGraph::Path>
+ generate (SemanticGraph::Schema&, SemanticGraph::Path const&);
+ };
+ }
+}
+
+#endif // LIBXSD_FRONTEND_GENERATORS_DEPENDENCIES_HXX