summaryrefslogtreecommitdiff
path: root/c++/lattice.h
diff options
context:
space:
mode:
authorClaudius Holeksa <mail@keldu.de>2023-06-19 20:38:24 +0200
committerClaudius Holeksa <mail@keldu.de>2023-06-19 20:38:24 +0200
commite94b82a2dbfbe03cde38375dc687b5952cdfa2c3 (patch)
tree35071850ed38aac3b41a1547490419244011beb2 /c++/lattice.h
parent955905b06c5a45adac73631056c9caa758e6d249 (diff)
c++: Added working code base
Diffstat (limited to 'c++/lattice.h')
-rw-r--r--c++/lattice.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/c++/lattice.h b/c++/lattice.h
index 62752e8..eb3b4cc 100644
--- a/c++/lattice.h
+++ b/c++/lattice.h
@@ -5,6 +5,8 @@
namespace kel {
namespace lbm {
namespace schema {
+using namespace saw::schema;
+
template<typename T, size_t D>
using Lattice = Array<T,D>;
@@ -16,4 +18,3 @@ using Lattice3D = Lattice<T,3>;
}
}
}
-}