summaryrefslogtreecommitdiff
path: root/odb/traversal/fundamental.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-22 15:58:08 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 17:02:47 +0300
commit823026b58211a4166de06ac243d978dcb9930271 (patch)
tree97b43039cb769f8bee410e8536f9f945f2825153 /odb/traversal/fundamental.hxx
parentb56b9c6796d8853758f0f5967488260d61b788e2 (diff)
Turn odb repository into muti-package repository
Also remove the autoconf/make-based build system.
Diffstat (limited to 'odb/traversal/fundamental.hxx')
-rw-r--r--odb/traversal/fundamental.hxx39
1 files changed, 0 insertions, 39 deletions
diff --git a/odb/traversal/fundamental.hxx b/odb/traversal/fundamental.hxx
deleted file mode 100644
index 974e74f..0000000
--- a/odb/traversal/fundamental.hxx
+++ /dev/null
@@ -1,39 +0,0 @@
-// file : odb/traversal/fundamental.hxx
-// license : GNU GPL v3; see accompanying LICENSE file
-
-#ifndef ODB_TRAVERSAL_FUNDAMENTAL_HXX
-#define ODB_TRAVERSAL_FUNDAMENTAL_HXX
-
-#include <odb/semantics/fundamental.hxx>
-#include <odb/traversal/elements.hxx>
-
-namespace traversal
-{
- struct fund_type: node<semantics::fund_type> {};
-
- struct fund_void: node<semantics::fund_void> {};
- struct fund_bool: node<semantics::fund_bool> {};
-
- // Integral.
- //
- struct fund_char: node<semantics::fund_char> {};
- struct fund_wchar: node<semantics::fund_wchar> {};
- struct fund_signed_char: node<semantics::fund_signed_char> {};
- struct fund_unsigned_char: node<semantics::fund_unsigned_char> {};
- struct fund_short: node<semantics::fund_short> {};
- struct fund_unsigned_short: node<semantics::fund_unsigned_short> {};
- struct fund_int: node<semantics::fund_int> {};
- struct fund_unsigned_int: node<semantics::fund_unsigned_int> {};
- struct fund_long: node<semantics::fund_long> {};
- struct fund_unsigned_long: node<semantics::fund_unsigned_long> {};
- struct fund_long_long: node<semantics::fund_long_long> {};
- struct fund_unsigned_long_long: node<semantics::fund_unsigned_long_long> {};
-
- // Real.
- //
- struct fund_float: node<semantics::fund_float> {};
- struct fund_double: node<semantics::fund_double> {};
- struct fund_long_double: node<semantics::fund_long_double> {};
-}
-
-#endif // ODB_TRAVERSAL_FUNDAMENTAL_HXX