// nUtil - An utility Library for gnurbs
// Copyright (C) 2008-2026 Eric Bechet
//
// See the LICENSE file for contributions and license information.
// Please report all bugs and problems to <bechet@cadxfem.org>.
//

#ifndef __NDISPLAY_H
#define __NDISPLAY_H

#include "nutilconfig.h"

#ifdef INTERFACE_TYPE_VTK
#include "vtkdisplay.h"
typedef vtkdisplay ndisplay ;
#endif

#ifdef INTERFACE_TYPE_FLTK
#include "fltkdisplay.h"
typedef fltkdisplay ndisplay ;
#endif

#ifndef INTERFACE_TYPE_VTK 
#ifndef INTERFACE_TYPE_FLTK
class ndisplay : public ndisplay_base
{};
#endif
#endif

#endif// __NDISPLAY_H
