Files
intelliphoto/src/IntelliHelper/IntelliToolsettings.h
Jan Schuffenhauer 3af7470a05 push thatv thing
2020-01-17 08:56:00 +01:00

25 lines
382 B
C++

#ifndef INTELLITOOLSETTINGS_H
#define INTELLITOOLSETTINGS_H
//for unit testing
class UnitTest;
class IntelliToolsettings {
friend UnitTest;
public:
IntelliToolsettings();
virtual ~IntelliToolsettings();
int getLineWidth() const;
void setLineWidth(int LineWidth);
int getInnerAlpha() const;
void setInnerAlpha(int innerAlpha);
private:
int lineWidth;
int innerAlpha;
};
#endif