| 23 | #include "settings.h" |
| 24 | |
| 25 | class settingsDialog : public QDialog |
| 26 | { |
| 27 | Q_OBJECT |
| 28 | private: |
| 29 | Settings appSettings; |
| 30 | public: |
| 31 | settingsDialog(QWidget *parent, Settings appSet); |
| 32 | ~settingsDialog(); |
| 33 | private Q_SLOTS: |
| 34 | void slotAccept(); |
| 35 | void slotCancel(); |
| 36 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected