From 823026b58211a4166de06ac243d978dcb9930271 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 22 Jan 2024 15:58:08 +0300 Subject: Turn odb repository into muti-package repository Also remove the autoconf/make-based build system. --- odb/traversal/relational/changelog.hxx | 53 ---------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 odb/traversal/relational/changelog.hxx (limited to 'odb/traversal/relational/changelog.hxx') diff --git a/odb/traversal/relational/changelog.hxx b/odb/traversal/relational/changelog.hxx deleted file mode 100644 index 4b7f18f..0000000 --- a/odb/traversal/relational/changelog.hxx +++ /dev/null @@ -1,53 +0,0 @@ -// file : odb/traversal/relational/changelog.hxx -// license : GNU GPL v3; see accompanying LICENSE file - -#ifndef ODB_TRAVERSAL_RELATIONAL_CHANGELOG_HXX -#define ODB_TRAVERSAL_RELATIONAL_CHANGELOG_HXX - -#include -#include - -namespace traversal -{ - namespace relational - { - struct contains_model: edge - { - contains_model () {} - contains_model (node_dispatcher& n) {node_traverser (n);} - - virtual void - traverse (type&); - }; - - struct contains_changeset: edge - { - contains_changeset () {} - contains_changeset (node_dispatcher& n) {node_traverser (n);} - - virtual void - traverse (type&); - }; - - struct changelog: node - { - public: - virtual void - traverse (type&); - - virtual void - contains_model (type&); - - virtual void - contains_model (type&, edge_dispatcher&); - - virtual void - contains_changeset (type&); - - virtual void - contains_changeset (type&, edge_dispatcher&); - }; - } -} - -#endif // ODB_TRAVERSAL_RELATIONAL_CHANGELOG_HXX -- cgit v1.1