GraphDom
Loading...
Searching...
No Matches
non_mixed_graph_vertex_container.h
1/*
2 * Copyright 2026 Michele Comparini
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef GRAPHDOM_NON_MIXED_GRAPH_VERTEX_CONTAINER_IMPL_H
8#define GRAPHDOM_NON_MIXED_GRAPH_VERTEX_CONTAINER_IMPL_H
9
10#include "../../graph.h"
11#include "../vertex_container.h"
12
13template <typename VertexType>
14template <typename VertexContainerPointerType>
16non_mixed_graph_vertex_container(const VertexType& v) : vertex_container(v) {}
17
18template <typename VertexType>
19template <typename VertexContainerPointerType>
21non_mixed_graph_vertex_container(VertexType&& v) : vertex_container( std::move( v ) ) {}
22
23#endif //GRAPHDOM_NON_MIXED_GRAPH_VERTEX_CONTAINER_IMPL_H
Every graph created using this library is an instance of a concrete class publicly derived,...
Definition graph.h:43