1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/common/include/villas/graph/edge.hpp
Steffen Vogel 3d73c759ea Reformat all code with clang-format
Signed-off-by: Steffen Vogel <post@steffenvogel.de>
2024-02-29 19:34:27 +01:00

51 lines
1.1 KiB
C++

/* A graph edge.
*
* Author: Daniel Krebs <github@daniel-krebs.net>
* SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include <fmt/ostream.h>
#include <villas/config.hpp>
#include <villas/graph/vertex.hpp>
namespace villas {
namespace graph {
class Edge {
template <typename VertexType, typename EdgeType> friend class DirectedGraph;
public:
using Identifier = std::size_t;
friend std::ostream &operator<<(std::ostream &stream, const Edge &edge) {
return stream << edge.id;
}
bool operator==(const Edge &other) { return this->id == other.id; }
Vertex::Identifier getVertexTo() const { return to; }
Vertex::Identifier getVertexFrom() const { return from; }
std::string toString() {
std::stringstream ss;
ss << *this;
return ss.str();
}
private:
Identifier id;
Vertex::Identifier from;
Vertex::Identifier to;
};
} // namespace graph
} // namespace villas
#ifndef FMT_LEGACY_OSTREAM_FORMATTER
template <>
class fmt::formatter<villas::graph::Edge> : public fmt::ostream_formatter {};
#endif