subsurface/profile-widget/profilescene.h

16 lines
314 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
// Displays the dive profile. Used by the interactive profile widget
// and the printing/exporting code.
#ifndef PROFILESCENE_H
#define PROFILESCENE_H
#include <QGraphicsScene>
class ProfileScene : public QGraphicsScene {
public:
ProfileScene();
~ProfileScene();
};
#endif