aboutsummaryrefslogtreecommitdiff
path: root/chaos/src/map_base.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chaos/src/map_base.hpp')
-rw-r--r--chaos/src/map_base.hpp16
1 files changed, 4 insertions, 12 deletions
diff --git a/chaos/src/map_base.hpp b/chaos/src/map_base.hpp
index 1395bb8..92016b1 100644
--- a/chaos/src/map_base.hpp
+++ b/chaos/src/map_base.hpp
@@ -23,26 +23,18 @@
#include "chaos_base.hpp"
+template <int dimensions>
class map_base
- : public chaos_base
+ : public chaos_base<dimensions>
{
protected:
- map_base(int n):
- chaos_base(n)
- {
- }
-
virtual void m_step()
{
}
};
-#define MAP_CALLBACKS \
-CHAOS_CALLBACKS
-
-
-#define MAP_ATTRIBUTES \
-CHAOS_ATTRIBUTES;
+#define MAP_CALLBACKS
+#define MAP_ATTRIBUTES
#define __map_base_hpp
#endif /* __map_base_hpp */