Go to the documentation of this file.00001
00002
00003 #include <stdio.h>
00004 #include <stdlib.h>
00005 #include <errno.h>
00006 #include <unistd.h>
00007 #include <signal.h>
00008 #include <string.h>
00009 #include <stdlib.h>
00010 #include <fcntl.h>
00011 #include <ctype.h>
00012 #include "common.h"
00013 #include "pcan_transmit.h"
00014 #include "ros/ros.h"
00015 #include "std_msgs/String.h"
00016 #include <sstream>
00017
00018 int main(int argc, char** argv)
00019 {
00026 ros::init(argc, argv, "pcan_transmit");
00027 pcan_transmit pcan_transmit_1;
00028 pcan_transmit_1.init(argc, argv);
00029
00030 ros::spin();
00031 }
00032