#ifndef LLARP_PATHBUILDER_HPP_ #define LLARP_PATHBUILDER_HPP_ #include #include #include struct llarp_pathbuilder_context : public llarp::path::PathSet { struct llarp_router* router; struct llarp_dht_context* dht; /// construct llarp_pathbuilder_context(llarp_router* p_router, struct llarp_dht_context* p_dht, size_t numPaths); virtual ~llarp_pathbuilder_context(){}; void BuildOne(); }; #endif