subsurface/profile-widget/profilescene.cpp
Berthold Stoeger 15342232ca profile: introduce a ProfileScene stub
This simply subclasses QGraphicsScene and is used as
a drop-in replacement. The plan is to step-by-step
move rendering functions there until the non-interactive
code can only use the scene and doesn't have to use
the QGraphicsView. This will hopefully remove quite
some conditional code.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-12-17 11:54:23 -08:00

10 lines
131 B
C++

// SPDX-License-Identifier: GPL-2.0
#include "profilescene.h"
ProfileScene::ProfileScene()
{
}
ProfileScene::~ProfileScene()
{
}