/****************************************************************************/1// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo2// Copyright (C) 2006-2025 German Aerospace Center (DLR) and others.3// This program and the accompanying materials are made available under the4// terms of the Eclipse Public License 2.0 which is available at5// https://www.eclipse.org/legal/epl-2.0/6// This Source Code may also be made available under the following Secondary7// Licenses when the conditions for such availability set forth in the Eclipse8// Public License 2.0 are satisfied: GNU General Public License, version 29// or later which is available at10// https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html11// SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later12/****************************************************************************/13/// @file RODFEdge.cpp14/// @author Daniel Krajzewicz15/// @author Michael Behrisch16/// @author Jakob Erdmann17/// @author Yun-Pang Floetteroed18/// @date Thu, 16.03.200619///20// An edge within the DFROUTER21/****************************************************************************/22#include <config.h>2324#include <algorithm>25#include <utils/common/MsgHandler.h>26#include "RODFEdge.h"272829// ===========================================================================30// method definitions31// ===========================================================================32RODFEdge::RODFEdge(const std::string& id, RONode* from, RONode* to, int index, const int priority, const std::string& type)33: ROEdge(id, from, to, index, priority, type) {}343536RODFEdge::~RODFEdge() {}373839void40RODFEdge::setFlows(const std::vector<FlowDef>& flows) {41myFlows = flows;42}434445const std::vector<FlowDef>&46RODFEdge::getFlows() const {47return myFlows;48}495051/****************************************************************************/525354