00001 #ifndef ADDCONNECTIONIMP_H 00002 #define ADDCONNECTIONIMP_H 00003 00004 #include "addconnection.h" 00005 #include <qmap.h> 00006 00007 class QListViewItem; 00008 00009 class AddConnectionImp : public AddConnection { 00010 00011 Q_OBJECT 00012 00013 public: 00014 AddConnectionImp(QWidget *parent=0, const char *name=0, WFlags f=0); 00015 void addConnections(const QMap<QString, QString> &newList); 00016 00017 private slots: 00018 void changed(); 00019 00020 private: 00021 QMap<QString, QString> list; 00022 00023 }; 00024 00025 #endif 00026 00027 // addconectionimp.h 00028
1.4.2