diff options
Diffstat (limited to 'include/framework/ShardInterface.h')
| -rw-r--r-- | include/framework/ShardInterface.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/include/framework/ShardInterface.h b/include/framework/ShardInterface.h deleted file mode 100644 index 3aa62df..0000000 --- a/include/framework/ShardInterface.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * include/framework/ShardInterface.h - * - * Copyright (C) 2023 Douglas Rumbaugh <drumbaugh@psu.edu> - * - * All rights reserved. Published under the Modified BSD License. - * - */ -#pragma once - -#include <concepts> - -#include "util/types.h" -#include "framework/RecordInterface.h" - -namespace de { - -//template <template<typename> typename S, typename R> -template <typename S> -concept ShardInterface = requires(S s, void *p, bool b) { - //{s.point_lookup(r, b) } -> std::same_as<R*>; - {s.get_record_count()} -> std::convertible_to<size_t>; - {s.get_memory_usage()} -> std::convertible_to<size_t>; -}; - -} |