Skip to content

Commit c872e02

Browse files
committed
fixup! Added error_code and runtime_exception message
1 parent 0fe9456 commit c872e02

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

include/ur_client_library/primary/robot_message/error_code_message.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
*/
2626
//----------------------------------------------------------------------
2727

28-
#ifndef UR_RTDE_DRIVER_PRIMARY_ERROR_CODE_MESSAGE_H_INCLUDED
29-
#define UR_RTDE_DRIVER_PRIMARY_ERROR_CODE_MESSAGE_H_INCLUDED
28+
#ifndef UR_CLIENT_LIBRARY_PRIMARY_ERROR_CODE_MESSAGE_H_INCLUDED
29+
#define UR_CLIENT_LIBRARY_PRIMARY_ERROR_CODE_MESSAGE_H_INCLUDED
3030

3131
#include "ur_client_library/primary/robot_message.h"
3232

@@ -101,6 +101,6 @@ class ErrorCodeMessage : public RobotMessage
101101
std::string text_;
102102
};
103103
} // namespace primary_interface
104-
} // namespace ur_driver
104+
} // namespace urcl
105105

106-
#endif // ifndef UR_RTDE_DRIVER_PRIMARY_TEXT_MESSAGE_H_INCLUDED
106+
#endif // ifndef UR_CLIENT_LIBRARY_PRIMARY_TEXT_MESSAGE_H_INCLUDED

include/ur_client_library/primary/robot_message/runtime_exception_message.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
*/
2626
//----------------------------------------------------------------------
2727

28-
#ifndef UR_RTDE_DRIVER_PRIMARY_RUNTIME_EXCEPTION_MESSAGE_H_INCLUDED
29-
#define UR_RTDE_DRIVER_PRIMARY_RUNTIME_EXCEPTION_MESSAGE_H_INCLUDED
28+
#ifndef UR_CLIENT_LIBRARY_PRIMARY_RUNTIME_EXCEPTION_MESSAGE_H_INCLUDED
29+
#define UR_CLIENT_LIBRARY_PRIMARY_RUNTIME_EXCEPTION_MESSAGE_H_INCLUDED
3030

3131
#include "ur_client_library/primary/robot_message.h"
3232

@@ -84,6 +84,6 @@ class RuntimeExceptionMessage : public RobotMessage
8484
std::string text_;
8585
};
8686
} // namespace primary_interface
87-
} // namespace ur_driver
87+
} // namespace urcl
8888

89-
#endif // ifndef UR_RTDE_DRIVER_PRIMARY_TEXT_MESSAGE_H_INCLUDED
89+
#endif // ifndef UR_CLIENT_LIBRARY_PRIMARY_TEXT_MESSAGE_H_INCLUDED

src/primary/robot_message/error_code_message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ std::string ErrorCodeMessage::toString() const
6767
return ss.str();
6868
}
6969
} // namespace primary_interface
70-
} // namespace ur_driver
70+
} // namespace urcl

src/primary/robot_message/runtime_exception_message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ std::string RuntimeExceptionMessage::toString() const
5959
return ss.str();
6060
}
6161
} // namespace primary_interface
62-
} // namespace ur_driver
62+
} // namespace urcl

0 commit comments

Comments
 (0)