mirror of https://github.com/meshcore-dev/MeshCore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
307 B
16 lines
307 B
#pragma once
|
|
|
|
#include <Mesh.h>
|
|
|
|
namespace mesh {
|
|
|
|
/**
|
|
* An abstraction of the data tables needed to be maintained, for the routing engine.
|
|
*/
|
|
class MeshTables {
|
|
public:
|
|
virtual bool hasForwarded(const uint8_t* packet_hash) const = 0;
|
|
virtual void setHasForwarded(const uint8_t* packet_hash) = 0;
|
|
};
|
|
|
|
}
|