AdvRoboticsROSTraining/Robot.h

13 lines
133 B
C++

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