Files
cgal/GraphicsView/include/CGAL/Qt/CGAL_Qt_config.h
T
Sébastien Loriot 0779373835 extra run of the script to remove tabs and trailing whitespaces
right after the  merge of 4.14 release branch

+ manual fix on one line in:
    * Arrangement_on_surface_2/include/CGAL/IO/Arr_text_formatter.h
    * .travis/generate_travis.sh
2020-03-26 14:16:06 +01:00

29 lines
571 B
C++

// Copyright (c) 2011 GeometryFactory (France). All rights reserved.
//
// This file is part of CGAL (www.cgal.org)
//
// $URL$
// $Id$
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial
//
//
// Author(s) : Laurent Rineau
#ifndef CGAL_QT_CONFIG_H
#define CGAL_QT_CONFIG_H
#include <QtCore/qglobal.h>
#if defined(CGAL_Qt5_DLL)
# if defined(CGAL_Qt5_EXPORTS)
# define CGAL_QT_EXPORT Q_DECL_EXPORT
# else
# define CGAL_QT_EXPORT Q_DECL_IMPORT
# endif
#else
// empty definition
# define CGAL_QT_EXPORT
#endif
#endif // CGAL_QT_CONFIG_H