UltraScan III
us_choice.h
Go to the documentation of this file.
1 #ifndef US_CHOICE_H
2 #define US_CHOICE_H
3 
4 #include <QtGui>
5 
6 #include "us_widgets_dialog.h"
7 #include "us_extern.h"
8 #include "us_solution.h"
9 
13 
15 {
16  Q_OBJECT
17 
18  public:
21  US_Choice( const US_Solution& );
22 
23  signals:
25  void choice( int value );
26 
27  private:
28  QList< QRadioButton* > radios;
29 
30  private slots:
31  void done( void );
32 };
33 #endif
34