18 lines
343 B
C
18 lines
343 B
C
#ifndef POINTLOCKCOMMON_H
|
|
#define POINTLOCKCOMMON_H
|
|
|
|
#include <QString>
|
|
|
|
struct DictStateTextInfo
|
|
{
|
|
QString state_text_name;
|
|
int actual_value;
|
|
QString display_value;
|
|
DictStateTextInfo() {
|
|
state_text_name = QString();
|
|
actual_value = -1;
|
|
display_value = QString();
|
|
}
|
|
};
|
|
#endif // POINTLOCKCOMMON_H
|