mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-27 07:47:03 -05:00
15 lines
229 B
C++
15 lines
229 B
C++
|
#include "PhotoShare.h"
|
||
|
#include "ui_PhotoShare.h"
|
||
|
|
||
|
PhotoShare::PhotoShare(QWidget *parent) :
|
||
|
QWidget(parent),
|
||
|
ui(new Ui::PhotoShare)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
PhotoShare::~PhotoShare()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|