#ifndef PROXY_DIALOG #define PROXY_DIALOG #include #include class QLabel; class QComboBox; class ProxyEntryGeneric; class ProxyEntryStatic; class ProxyDialog: public QDialog { Q_OBJECT public: ProxyDialog(QWidget *parent = 0); private: QLabel *topLabel; QLabel *bottomLabel; QComboBox *countryBox; QComboBox *stateBox; QComboBox *cityBox; }; #endif