Skip to content

src/storage/trie/trie_storage_backend.hpp

Namespaces

Name
sgns
sgns::storage
sgns::storage::trie

Classes

Name
class sgns::storage::trie::TrieStorageBackend

Source code

#ifndef SUPERGENIUS_TRIE_DB_BACKEND_HPP
#define SUPERGENIUS_TRIE_DB_BACKEND_HPP

#include "outcome/outcome.hpp"

#include "storage/buffer_map_types.hpp"

namespace sgns::storage::trie {

  class TrieStorageBackend : public BufferStorage {
   public:
    ~TrieStorageBackend() override = default;
  };

}  // namespace sgns::storage::trie

#endif  // SUPERGENIUS_TRIE_DB_BACKEND_HPP

Updated on 2026-03-04 at 13:10:45 -0800