From 1d8124e27f20962994d6a762f4e0649600aa22af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mael=20Rouxel-Labb=C3=A9?= Date: Fri, 17 Jan 2020 15:16:50 +0100 Subject: [PATCH] Move two VRML-files into IO/VMRL + add convenience header --- Stream_support/include/CGAL/IO/VRML.h | 23 +++++++++++++++++++ .../CGAL/IO/{ => VRML}/File_writer_VRML_2.h | 0 .../IO/{ => VRML}/File_writer_VRML_2_impl.h | 0 3 files changed, 23 insertions(+) create mode 100644 Stream_support/include/CGAL/IO/VRML.h rename Stream_support/include/CGAL/IO/{ => VRML}/File_writer_VRML_2.h (100%) rename Stream_support/include/CGAL/IO/{ => VRML}/File_writer_VRML_2_impl.h (100%) diff --git a/Stream_support/include/CGAL/IO/VRML.h b/Stream_support/include/CGAL/IO/VRML.h new file mode 100644 index 00000000000..d7f969256d4 --- /dev/null +++ b/Stream_support/include/CGAL/IO/VRML.h @@ -0,0 +1,23 @@ +// Copyright (c) 2020 GeometryFactory Sarl (France). +// All rights reserved. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. +// +// This file is part of CGAL (www.cgal.org) +// +// $URL$ +// $Id$ +// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial +// +// Author(s) : Maxime Gimeno + +#ifndef CGAL_IO_VRML_H +#define CGAL_IO_VRML_H + +#include +#include +#include +#include + +#endif // CGAL_IO_VRML_H diff --git a/Stream_support/include/CGAL/IO/File_writer_VRML_2.h b/Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h similarity index 100% rename from Stream_support/include/CGAL/IO/File_writer_VRML_2.h rename to Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2.h diff --git a/Stream_support/include/CGAL/IO/File_writer_VRML_2_impl.h b/Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2_impl.h similarity index 100% rename from Stream_support/include/CGAL/IO/File_writer_VRML_2_impl.h rename to Stream_support/include/CGAL/IO/VRML/File_writer_VRML_2_impl.h