tomato/src/fragment_store/fragment_store_i.hpp

12 lines
149 B
C++
Raw Normal View History

2024-02-13 00:15:18 +01:00
#pragma once
#include <cstdint>
// internal id
enum class FragmentID : uint32_t {};
struct FragmentStoreI {
virtual ~FragmentStoreI(void) {}
};