Files
comaps/qt/preferences_dialog.hpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

25 lines
353 B
C++

#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