mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
16 lines
314 B
C
16 lines
314 B
C
|
// 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
|