USGS

Isis 3.0 Developer's Reference (API)

Home

QnetCubePointsFilter.h

Go to the documentation of this file.
00001 #ifndef QnetCubePointsFilter_h
00002 #define QnetCubePointsFilter_h
00003 
00004 #include "QnetFilter.h"
00005 
00006 class QRadioButton;
00007 class QLineEdit;
00008 
00009 namespace Isis {
00032   class QnetCubePointsFilter : public QnetFilter {
00033       Q_OBJECT
00034 
00035     public:
00036       QnetCubePointsFilter(QnetNavTool *navTool, QWidget *parent = 0);
00037       virtual void filter();
00038 
00039     private:
00040       QRadioButton *m_lessThanRB;
00041       QRadioButton *m_greaterThanRB;
00042       QLineEdit *m_pointEdit;
00043   };
00044 };
00045 
00046 #endif