Moved up src/ one level

This commit is contained in:
2019-12-13 08:57:53 +01:00
parent 610ed9fa7f
commit 9f9315c8a4
28 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#ifndef INTELLITOOLSETCOLORTOOL_H
#define INTELLITOOLSETCOLORTOOL_H
#include"QColor"
#include"QPoint"
#include"QColorDialog"
class IntelliColorPicker{
public:
IntelliColorPicker();
virtual ~IntelliColorPicker();
void switchColors();
QColor getFirstColor();
QColor getSecondColor();
void setFirstColor(QColor Color);
void setSecondColor(QColor Color);
private:
QColor firstColor;
QColor secondColor;
};
#endif // INTELLITOOLSETCOLORTOOL_H