File Vertex.h
File List > detail > graph > Vertex.h
Go to the documentation of this file
// Copyright (c) 2012-2013, IGN France.
// Copyright (c) 2012-2022, Oslandia.
// SPDX-License-Identifier: LGPL-2.0-or-later
#ifndef _SFCGAL_GRAPH_VERTEX_H_
#define _SFCGAL_GRAPH_VERTEX_H_
#include "SFCGAL/config.h"
#include "SFCGAL/Coordinate.h"
namespace SFCGAL {
namespace graph {
struct SFCGAL_API Vertex {
Vertex(const Coordinate &coordinate_ = Coordinate());
Coordinate coordinate;
};
} // namespace graph
} // namespace SFCGAL
#endif