co-maps/qt/preferences_dialog.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
353 B
C++
Raw Permalink Normal View History

2025-11-22 13:58:55 +01:00
#pragma once
#include <string>
#include <QtWidgets/QDialog>
class Framework;
namespace qt
{
class PreferencesDialog : public QDialog
{
typedef QDialog base_t;
Q_OBJECT
public:
PreferencesDialog(QWidget * parent, Framework & framework);
};
} // namespace qt
#ifdef BUILD_DESIGNER
extern std::string const kEnabledAutoRegenGeomIndex;
#endif