AbraaoAllysson

Utility.h

Aug 16th, 2016
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. #ifndef UTILITY_H
  2. #define UTILITY_H
  3.  
  4. #include <iostream> //std::cout, std::cerr
  5. #include <fstream>
  6.  
  7. #include <ros/ros.h> //ros::init ...
  8. #include <nav_msgs/Odometry.h>
  9. #include <geometry_msgs/Twist.h>
  10. #include <kobuki_msgs/SensorState.h> // Biblioteca para pegar msg do turtle
  11. #include <iostream>
  12. #include <smart_battery_msgs/SmartBatteryStatus.h> // Biblioteca para pegar a msg do laptop
  13. #include <QString>
  14. #include <QDebug>
  15. class Utility
  16. {
  17. public:
  18. Utility();
  19. QString statusBatteryLaptop();
  20. };
  21.  
  22. #endif // UTILITY_H
Add Comment
Please, Sign In to add comment