GraphDom
Toggle main menu visibility
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
13
template
<
typename
VertexType>
14
graphdom::graph<VertexType>::vertex_container::vertex_container(
const
VertexType& v) : vertex(v) {}
15
16
template
<
typename
VertexType>
17
graphdom::graph<VertexType>::vertex_container::vertex_container(VertexType&& v) : vertex( std::move(v) ) {}
18
19
#endif
//GRAPHDOM_VERTEX_CONTAINER_IMPL_H
include
graphdom
detail
impl
vertex_container.h
Generated by
1.17.0