mirror of https://github.com/qt/qtgraphs.git
19 lines
474 B
C++
19 lines
474 B
C++
// Copyright (C) 2024 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
|
#include "surfacegraphwidget.h"
|
|
|
|
SurfaceGraphWidget::SurfaceGraphWidget() = default;
|
|
|
|
SurfaceGraphWidget::~SurfaceGraphWidget() = default;
|
|
|
|
void SurfaceGraphWidget::initialize()
|
|
{
|
|
m_surfaceGraph = new Q3DSurfaceWidgetItem();
|
|
m_surfaceGraph->setWidget(this);
|
|
}
|
|
|
|
Q3DSurfaceWidgetItem *SurfaceGraphWidget::surfaceGraph() const
|
|
{
|
|
return m_surfaceGraph;
|
|
}
|