Working on simple window hierarchy

This commit is contained in:
amazing-username
2017-07-25 12:06:05 -05:00
parent 062b9338f0
commit 41c53fe8e9
3 changed files with 13 additions and 0 deletions
View File
+6
View File
@@ -0,0 +1,6 @@
#include"PasswordManagementWindow.h"
PasswordManagementWindow::PasswordManagementWindow(QWidget* parent) : QDialog(parent)
{
}
+7
View File
@@ -0,0 +1,7 @@
#ifndef PASSWORDMANAGEMENTWINDOW_H_
#define PASSWORDMANAGEMENTWINDOW_H_
class PasswordManagementWindow : public QDialog, public CommonWindow, public ViewingWindow
{
};