#ifndef ROBOT_H
#define ROBOT_H
#include <string>
class Robot {
public:
int getErrorCode();
std::string getRobotType();
};
#endif