20#ifndef ORES_CONNECTIONS_GENERATORS_CONNECTION_GENERATOR_HPP
21#define ORES_CONNECTIONS_GENERATORS_CONNECTION_GENERATOR_HPP
24#include <boost/uuid/uuid.hpp>
25#include "ores.connections/domain/connection.hpp"
26#include "ores.utility/generation/generation_context.hpp"
28namespace ores::connections::generators {
33domain::connection generate_synthetic_connection(
34 utility::generation::generation_context& ctx);
39domain::connection generate_synthetic_connection(
40 utility::generation::generation_context& ctx,
41 const boost::uuids::uuid& folder_id);
46std::vector<domain::connection> generate_synthetic_connections(
47 std::size_t n, utility::generation::generation_context& ctx);