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/SaveFile.h
T

23 lines
388 B
C++

#ifndef SAVEFILE_H_
#define SAVEFILE_H_
#include"CommonWindow.h"
#include"ViewingWindow.h"
class SaveFile : public QDialog, public CommonWindow, public ViewingWindow
{
Q_OBJECT
public:
SaveFile(QWidget* parent = 0);
private:
void setupWindow();
void connections();
unique_ptr<QLineEdit> filename;
unique_ptr<QPushButton> saveIt;
private slots:
void saveFileAs();
};
#endif