1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00
subsurface/core/windowtitleupdate.h

17 lines
275 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#ifndef WINDOWTITLEUPDATE_H
#define WINDOWTITLEUPDATE_H
#include <QObject>
class WindowTitleUpdate : public QObject
{
Q_OBJECT
signals:
void updateTitle();
};
extern WindowTitleUpdate windowTitleUpdate;
#endif // WINDOWTITLEUPDATE_H