Skip to content

Commit 77881a0

Browse files
committed
Use namespace urcl in example
1 parent 943fb57 commit 77881a0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

examples/send_script_blocking.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
#include <thread>
33
#include <chrono>
44

5+
using namespace urcl;
6+
57
std::string DEFAULT_ROBOT_IP = "192.168.56.101";
68

79
int main(int argc, char* argv[])
@@ -15,8 +17,8 @@ int main(int argc, char* argv[])
1517
{
1618
robot_ip = std::string(argv[1]);
1719
}
18-
auto notif = urcl::comm::INotifier();
19-
auto client = urcl::primary_interface::PrimaryClient(robot_ip, notif);
20+
auto notif = comm::INotifier();
21+
auto client = primary_interface::PrimaryClient(robot_ip, notif);
2022
client.start(10);
2123
std::cout << "Client connected" << std::endl;
2224

0 commit comments

Comments
 (0)