You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
283 B

1 year ago
#ifndef CSCI_OPERATOR_H
#define CSCI_OPERATOR_H
class Operator {
public:
/// 初始化
void init();
/// 更新
void update();
/// 上报状态
void report();
///
private:
/// 模型参数
int model;
};
#endif //CSCI_OPERATOR_H