Skip to content

Commit 0fe9456

Browse files
committed
fixup! Added TextMessage and KeyMessage
1 parent 9ffd1fe commit 0fe9456

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

include/ur_client_library/primary/robot_message/key_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_KEY_MESSAGE_H_INCLUDED
29-
#define UR_RTDE_DRIVER_PRIMARY_KEY_MESSAGE_H_INCLUDED
28+
#ifndef UR_CLIENT_LIBRARY_PRIMARY_KEY_MESSAGE_H_INCLUDED
29+
#define UR_CLIENT_LIBRARY_PRIMARY_KEY_MESSAGE_H_INCLUDED
3030

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

@@ -86,6 +86,6 @@ class KeyMessage : public RobotMessage
8686
std::string text_;
8787
};
8888
} // namespace primary_interface
89-
} // namespace ur_driver
89+
} // namespace urcl
9090

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

include/ur_client_library/primary/robot_message/text_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_TEXT_MESSAGE_H_INCLUDED
29-
#define UR_RTDE_DRIVER_PRIMARY_TEXT_MESSAGE_H_INCLUDED
28+
#ifndef UR_CLIENT_LIBRARY_PRIMARY_TEXT_MESSAGE_H_INCLUDED
29+
#define UR_CLIENT_LIBRARY_PRIMARY_TEXT_MESSAGE_H_INCLUDED
3030

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

@@ -82,6 +82,6 @@ class TextMessage : public RobotMessage
8282
std::string text_;
8383
};
8484
} // namespace primary_interface
85-
} // namespace ur_driver
85+
} // namespace urcl
8686

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

src/primary/robot_message/key_message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ std::string KeyMessage::toString() const
6161
return ss.str();
6262
}
6363
} // namespace primary_interface
64-
} // namespace ur_driver
64+
} // namespace urcl

src/primary/robot_message/text_message.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ std::string TextMessage::toString() const
5353
return text_;
5454
}
5555
} // namespace primary_interface
56-
} // namespace ur_driver
56+
} // namespace urcl

0 commit comments

Comments
 (0)