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/ViewingWindow.h
T
2017-07-23 13:07:52 -05:00

19 lines
279 B
C++

#ifndef VIEWINGWINDOW_H_
#define VIEWINGWINDOW_H_
#include<QLineEdit>
#include<QPushButton>
#include<memory>
using std::unique_ptr;
class ViewingWindow
{
public:
ViewingWindow() = default;
~ViewingWindow() = default;
protected:
unique_ptr<QLineEdit> crypticText;
};
#endif