Redirecting project's purpose into password encryption. Need to separate declaration from implementation

This commit is contained in:
amazing-username
2017-07-27 12:04:10 -05:00
parent 41c53fe8e9
commit 4d5b19cabe
8 changed files with 89 additions and 80 deletions
+7
View File
@@ -1,6 +1,8 @@
#ifndef VIEWINGWINDOW_H_
#define VIEWINGWINDOW_H_
#include<QVBoxLayout>
#include<QTableView>
#include<QLineEdit>
#include<QPushButton>
#include<memory>
@@ -13,6 +15,11 @@ public:
ViewingWindow() = default;
~ViewingWindow() = default;
protected:
unique_ptr<QVBoxLayout> subLayoutGoonOne;
unique_ptr<QVBoxLayout> subLayoutGoonTwo;
unique_ptr<QLineEdit> crypticText;
unique_ptr<QTableView> elementView;
unique_ptr<QPushButton> closeButton;
unique_ptr<QPushButton> generateNewKeys;
};
#endif