mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-05 03:21:42 +00:00
Pneumatics still have CAN modules. The refactored code is now eight plugins for sensors and actuators. There is some code reuse that should be refactored out, but that level of abstraction will wait until we figure out how these plugins are integrating with gazebo proper. Change-Id: I357e695ef05af6dda83a39ba60380686bd57d11a Closes: artf2610, artf2623
31 lines
876 B
C++
31 lines
876 B
C++
|
|
#include "msgs/float64.pb.h"
|
|
#include "msgs/bool.pb.h"
|
|
#include "msgs/driver-station.pb.h"
|
|
|
|
#include <gazebo/msgs/msgs.hh>
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#ifndef _FRC_MSGS_H_
|
|
#define _FRC_MSGS_H_
|
|
|
|
namespace gazebo {
|
|
namespace msgs {
|
|
|
|
typedef GzString String;
|
|
typedef boost::shared_ptr< gazebo::msgs::String > StringPtr;
|
|
typedef const boost::shared_ptr< const gazebo::msgs::String > ConstStringPtr;
|
|
|
|
typedef boost::shared_ptr< msgs::Float64 > Float64Ptr;
|
|
typedef const boost::shared_ptr< const msgs::Float64 > ConstFloat64Ptr;
|
|
|
|
typedef boost::shared_ptr< msgs::Bool > BoolPtr;
|
|
typedef const boost::shared_ptr< const msgs::Bool > ConstBoolPtr;
|
|
|
|
typedef boost::shared_ptr< msgs::DriverStation > DriverStationPtr;
|
|
typedef const boost::shared_ptr< const msgs::DriverStation > ConstDriverStationPtr;
|
|
}
|
|
}
|
|
|
|
#endif /* _FRC_MSGS_H_ */
|