mirror of
https://github.com/nasa/trick.git
synced 2024-12-18 20:57:55 +00:00
4c471eb32d
Introducing a pubish and subscribe example sim. The publisher includes a ROS msg file that is processed by ROS into a header file. refs #190
21 lines
466 B
Plaintext
21 lines
466 B
Plaintext
|
|
#include "sim_objects/default_trick_sys.sm"
|
|
|
|
##include "ros_comm/ros_framework.hh"
|
|
##include "ros_comm/ros_publish.hh"
|
|
|
|
class RosPublishSimObject : public Trick::SimObject {
|
|
|
|
public:
|
|
RosFramework rf ;
|
|
RosPublish rp ;
|
|
|
|
RosPublishSimObject() : rf("talker") , rp() {
|
|
("initialization") rp.init() ;
|
|
(0.5, "scheduled") rp.publish() ;
|
|
("shutdown") rf.shutdown() ;
|
|
}
|
|
} ;
|
|
|
|
RosPublishSimObject rp_so ;
|