This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PasswordEncryption/Commonwindow.h
T
2017-07-23 13:08:59 -05:00

26 lines
491 B
C++

#ifndef COMMONWINDOW_H_
#define COMMONWINDOW_H_
#include<QHBoxLayout>
#include<QVBoxLayout>
#include<QComboBox>
#include<QPushButton>
#include<memory>
using std::unique_ptr;
class CommonWindow
{
public:
CommonWindow() = default;
~CommonWindow() = default;
protected:
unique_ptr<QComboBox> selectionBox;
unique_ptr<QPushButton> actionButton;
unique_ptr<QHBoxLayout> mainLayout;
unique_ptr<VBoxLayout> subLayoutOne;
unique_ptr<VBoxLayout> subLayoutTwo;
int height, width;
};
#endif