RetroShare/retroshare-gui/src/gui/PhotoShare/PhotoItem.cpp

15 lines
222 B
C++
Raw Normal View History

#include "PhotoItem.h"
#include "ui_PhotoItem.h"
PhotoItem::PhotoItem(QWidget *parent) :
QWidget(parent),
ui(new Ui::PhotoItem)
{
ui->setupUi(this);
}
PhotoItem::~PhotoItem()
{
delete ui;
}