mirror of https://github.com/CGAL/cgal
32 lines
602 B
C++
32 lines
602 B
C++
// Copyright (c) 2009-2011 GeometryFactory Sarl (France)
|
|
// All rights reserved.
|
|
//
|
|
// This file is part of CGAL (www.cgal.org).
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
|
|
//
|
|
//
|
|
// Author(s) : Laurent RINEAU
|
|
|
|
#ifndef SCENE_ITEM_CONFIG_H
|
|
#define SCENE_ITEM_CONFIG_H
|
|
|
|
#include <CGAL/license/Three.h>
|
|
|
|
|
|
#include <QtCore/qglobal.h>
|
|
|
|
#ifdef demo_framework_EXPORTS
|
|
# define scene_item_EXPORTS
|
|
#endif
|
|
|
|
#ifdef scene_item_EXPORTS
|
|
# define SCENE_ITEM_EXPORT Q_DECL_EXPORT
|
|
#else
|
|
# define SCENE_ITEM_EXPORT Q_DECL_IMPORT
|
|
#endif
|
|
|
|
#endif // SCENE_ITEM_CONFIG_H
|