UltraScan III
us_clipdata.h
Go to the documentation of this file.
1 #ifndef US_CLIPDATA_H
3 #define US_CLIPDATA_H
4 
5 #include <QtGui>
6 
7 #include "us_widgets_dialog.h"
8 #include "us_help.h"
9 
12 {
13  Q_OBJECT
14 
15  public:
22  US_ClipData( double&, double&, double, double,
23  QWidget* = 0, Qt::WindowFlags = 0 );
24 
25  private:
26  double& conc;
27  double& rad;
28 
29  QwtCounter* ct_conc;
30  QwtCounter* ct_rad;
31 
33 
34  private slots:
35  void ok ( void );
36  void help( void )
37  { showhelp.show_help( "manual/astfem_sim_clip.html" ); };
38 };
39 
40 #endif
41