mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-12 19:40:28 +02:00
25 lines
370 B
C++
25 lines
370 B
C++
#ifndef INTELLITOOLSETTINGS_H
|
|
#define INTELLITOOLSETTINGS_H
|
|
|
|
//for unit testing
|
|
class UnitTest;
|
|
|
|
class IntelliToolsettings {
|
|
friend UnitTest;
|
|
public:
|
|
IntelliToolsettings();
|
|
virtual ~IntelliToolsettings();
|
|
|
|
int getLineWidth();
|
|
void setLineWidth(int LineWidth);
|
|
|
|
int getInnerAlpha();
|
|
void setInnerAlpha(int innerAlpha);
|
|
|
|
private:
|
|
int lineWidth;
|
|
int innerAlpha;
|
|
};
|
|
|
|
#endif
|