All Classes Namespaces Files Functions Variables Enumerations Enumerator
programs/UrgPorts/UrgPortsWidget.h
Go to the documentation of this file.
00001 #ifndef URG_PORTS_WIDGET_H
00002 #define URG_PORTS_WIDGET_H
00003 
00013 #include "ui_UrgPortsWidgetForm.h"
00014 #include <memory>
00015 
00016 
00020 class UrgPortsWidget : public QWidget, private Ui::UrgPortsWidgetForm
00021 {
00022   Q_OBJECT;
00023 
00024   UrgPortsWidget(const UrgPortsWidget& rhs);
00025   UrgPortsWidget& operator = (const UrgPortsWidget& rhs);
00026 
00027   struct pImpl;
00028   std::auto_ptr<pImpl> pimpl;
00029 
00030 private slots:
00031   void rescanHandler(void);
00032 
00033 public:
00034   UrgPortsWidget(QWidget* parent = 0);
00035   ~UrgPortsWidget(void);
00036 };
00037 
00038 #endif /* !URG_PORTS_WIDGET_H */