init
This commit is contained in:
32
device/control/acs/buffercode/rscompcode.h
Normal file
32
device/control/acs/buffercode/rscompcode.h
Normal file
@@ -0,0 +1,32 @@
|
||||
#ifndef RSCOMPCODE_H
|
||||
#define RSCOMPCODE_H
|
||||
#include<QString>
|
||||
|
||||
class RSCompCode
|
||||
{
|
||||
public:
|
||||
RSCompCode();
|
||||
QString getCode();
|
||||
void setXStartPos(double value);
|
||||
void setYStartPos(double value);
|
||||
void setXWorkRange(double value);
|
||||
void setYWorkRange(double value);
|
||||
void setXInterval(double value);
|
||||
void setYInterval(double value);
|
||||
|
||||
private:
|
||||
int getLookupRows();
|
||||
int getLookupCols();
|
||||
|
||||
|
||||
private:
|
||||
double xStartPos{0.0};
|
||||
double yStartPos{0.0};
|
||||
double xInterval{0.1};
|
||||
double yInterval{0.1};
|
||||
double xWorkRange{1.0};
|
||||
double yWorkRange{1.0};
|
||||
|
||||
};
|
||||
|
||||
#endif // RSCOMPCODE_H
|
||||
Reference in New Issue
Block a user