Skip to content
Snippets Groups Projects
Commit fd0858c2 authored by Sacha Percot-Tétu's avatar Sacha Percot-Tétu
Browse files

Added the Output class

The output class represents an operation's output data.
parent edd1c691
No related branches found
No related tags found
No related merge requests found
#ifndef EIIMAGE_OUTPUT_H
#define EIIMAGE_OUTPUT_H
#include <vector>
#include <string>
class QWidget;
class Output {
public:
Output(std::string name) : _name(name) {}
virtual QWidget* getWidget() = 0;
virtual Output* clone() const = 0;
protected:
std::string _name;
};
#endif //!EIIMAGE_OUTPUT_H
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment