mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-13 03:40:31 +02:00
25 lines
382 B
C++
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
|