22 lines
360 B
C++
22 lines
360 B
C++
|
#ifndef CALIBRATIONMANAGER_HPP
|
||
|
#define CALIBRATIONMANAGER_HPP
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "calibratetext.hpp"
|
||
|
|
||
|
class CalibrationManager
|
||
|
{
|
||
|
public:
|
||
|
CalibrationManager(const std::string&);
|
||
|
void execute();
|
||
|
private:
|
||
|
std::string _hd;
|
||
|
|
||
|
void _verify();
|
||
|
void _text(const std::string&, const CalibrateText&, const CalibrateFlag);
|
||
|
void _backup();
|
||
|
};
|
||
|
|
||
|
#endif
|