Code cleanup

This commit is contained in:
amazing-username
2018-02-26 22:01:00 -06:00
commit cec1e0bbb6
39 changed files with 3268 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
#ifndef PASSWORDMANAGEMENTWINDOW_H_
#define PASSWORDMANAGEMENTWINDOW_H_
#include<vector>
#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<QLineEdit> passwordField;
unique_ptr<vector<QTableWidgetItem*>> z;
private slots:
void exitApplication();
void testTableView();
};
#endif