af27778be
김태훈
HACCP 구현
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef HACCP_H
#define HACCP_H
#include <QString>
#include "define.h"
namespace HACCP
{
void init();
void autoStart(const QString &path);
void manualStart();
void multiStart();
void washStart(int type);
void engineeringStart();
void done();
void error(QString code);
// For auto cook
void setConfig(Define::CookConfigType type, int level);
void setStep(Define::StepType type);
void setProcess(Define::Process type);
}
#endif // HACCP_H
|