Added abstract class that holds partial window data
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user