mirror of
https://github.com/NanjingForestryUniversity/uppermachine-tobacco.git
synced 2025-11-08 14:24:07 +00:00
24 lines
332 B
C++
24 lines
332 B
C++
#ifndef PARAMETER_H
|
|
#define PARAMETER_H
|
|
|
|
#include "camera.h"
|
|
#include <QTime>
|
|
|
|
|
|
|
|
|
|
class Parameter{
|
|
public:
|
|
QTime lamp_timer;
|
|
uint32_t lamp_used_time = 0;
|
|
string password;
|
|
vector<string> file_info = vector<string>(2);
|
|
uint32_t valve_cnt_vector[256] = {0};
|
|
QDateTime current_time;
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // PARAMETER_H
|