haccp.h 446 Bytes
#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