LCOV - code coverage report
Current view: top level - src/router - RONode.h (source / functions) Hit Total Coverage
Test: lcov.info Lines: 5 5 100.0 %
Date: 2024-05-08 15:29:52 Functions: 0 0 -

          Line data    Source code
       1             : /****************************************************************************/
       2             : // Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.dev/sumo
       3             : // Copyright (C) 2001-2024 German Aerospace Center (DLR) and others.
       4             : // This program and the accompanying materials are made available under the
       5             : // terms of the Eclipse Public License 2.0 which is available at
       6             : // https://www.eclipse.org/legal/epl-2.0/
       7             : // This Source Code may also be made available under the following Secondary
       8             : // Licenses when the conditions for such availability set forth in the Eclipse
       9             : // Public License 2.0 are satisfied: GNU General Public License, version 2
      10             : // or later which is available at
      11             : // https://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html
      12             : // SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
      13             : /****************************************************************************/
      14             : /// @file    RONode.h
      15             : /// @author  Daniel Krajzewicz
      16             : /// @author  Michael Behrisch
      17             : /// @date    Sept 2002
      18             : ///
      19             : // Base class for nodes used by the router
      20             : /****************************************************************************/
      21             : #pragma once
      22             : #include <config.h>
      23             : 
      24             : #include <string>
      25             : #include <vector>
      26             : #include <utils/common/Named.h>
      27             : #include <utils/geom/Position.h>
      28             : 
      29             : // ===========================================================================
      30             : // class declarations
      31             : // ===========================================================================
      32             : class ROEdge;
      33             : 
      34             : typedef std::vector<const ROEdge*> ConstROEdgeVector;
      35             : 
      36             : // ===========================================================================
      37             : // class definitions
      38             : // ===========================================================================
      39             : /**
      40             :  * @class RONode
      41             :  * @brief Base class for nodes used by the router
      42             :  */
      43             : class RONode : public Named {
      44             : public:
      45             :     /** @brief Constructor
      46             :      * @param[in] id The id of the node
      47             :      */
      48             :     RONode(const std::string& id);
      49             : 
      50             : 
      51             :     /// @brief Destructor
      52             :     ~RONode();
      53             : 
      54             : 
      55             :     /** @brief Sets the position of the node
      56             :      * @param[in] p The node's position
      57             :      */
      58             :     void setPosition(const Position& p);
      59             : 
      60             : 
      61             :     /** @brief Returns the position of the node
      62             :      * @return This node's position
      63             :      */
      64             :     const Position& getPosition() const {
      65      316781 :         return myPosition;
      66             :     }
      67             : 
      68             : 
      69             :     inline const ConstROEdgeVector& getIncoming() const {
      70             :         return myIncoming;
      71             :     }
      72             : 
      73             :     inline const ConstROEdgeVector& getOutgoing() const {
      74             :         return myOutgoing;
      75             :     }
      76             : 
      77             :     void addIncoming(ROEdge* edge) {
      78      308823 :         myIncoming.push_back(edge);
      79      308823 :     }
      80             : 
      81             :     void addOutgoing(ROEdge* edge) {
      82      308823 :         myOutgoing.push_back(edge);
      83      308823 :     }
      84             : 
      85             : private:
      86             :     /// @brief This node's position
      87             :     Position myPosition;
      88             : 
      89             :     /// @brief incoming edges
      90             :     ConstROEdgeVector myIncoming;
      91             :     /// @brief outgoing edges
      92             :     ConstROEdgeVector myOutgoing;
      93             : 
      94             : 
      95             : private:
      96             :     /// @brief Invalidated copy constructor
      97             :     RONode(const RONode& src);
      98             : 
      99             :     /// @brief Invalidated assignment operator
     100             :     RONode& operator=(const RONode& src);
     101             : 
     102             : };

Generated by: LCOV version 1.14