Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef IMAGEITEM_HPP
#define IMAGEITEM_HPP
#include <QListWidgetItem>
#include <isis/data/io_factory.hpp>
class ImageItem:public QObject, public QListWidgetItem{
Q_OBJECT
isis::data::Image m_img;
public slots:
void resetData(QString template_str);
public:
ImageItem(isis::data::Image img,QListWidget *view=0):QListWidgetItem(view,UserType+1),m_img(img){}
isis::data::Image getImage() const;
};
#endif // IMAGEITEM_HPP