GraphDom
Loading...
Searching...
No Matches
vertex_container.h
1/*
2 * Copyright 2026 Michele Comparini
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef GRAPHDOM_VERTEX_CONTAINER_IMPL_H
8#define GRAPHDOM_VERTEX_CONTAINER_IMPL_H
9
10#include "../../graph.h"
11#include "../vertex_container.h"
12
13template<typename VertexType>
14graphdom::graph<VertexType>::vertex_container::vertex_container(const VertexType& v) : vertex(v) {}
15
16template<typename VertexType>
17graphdom::graph<VertexType>::vertex_container::vertex_container(VertexType&& v) : vertex( std::move(v) ) {}
18
19#endif //GRAPHDOM_VERTEX_CONTAINER_IMPL_H