#ifndef PASSWORDMANAGEMENTWINDOW_H_ #define PASSWORDMANAGEMENTWINDOW_H_ #include #include"CommonWindow.h" #include"ViewingWindow.h" using std::vector; class PasswordManagementWindow : public QDialog, public CommonWindow, public ViewingWindow { Q_OBJECT public: PasswordManagementWindow(QWidget* parent=0); ~PasswordManagementWindow()=default; void setupContentOfComboBox(); void populatePass(); private: void setupWindow(); void setupLayouts(); void connections(); unique_ptr passwordField; unique_ptr> z; private slots: void exitApplication(); void testTableView(); }; #endif