mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Removed empty default constructors and destructors from Gazebo plugins (#63)
This commit is contained in:
committed by
Peter Johnson
parent
21b2aabf18
commit
e6f6d24780
@@ -18,10 +18,6 @@
|
||||
|
||||
GZ_REGISTER_MODEL_PLUGIN(Servo)
|
||||
|
||||
Servo::Servo() {}
|
||||
|
||||
Servo::~Servo() {}
|
||||
|
||||
void Servo::Load(physics::ModelPtr model, sdf::ElementPtr sdf) {
|
||||
this->model = model;
|
||||
signal = 0;
|
||||
|
||||
@@ -34,9 +34,6 @@ using namespace gazebo;
|
||||
*/
|
||||
class Servo : public ModelPlugin {
|
||||
public:
|
||||
Servo();
|
||||
~Servo();
|
||||
|
||||
/// \brief load the servo and configure it according to the sdf
|
||||
void Load(physics::ModelPtr model, sdf::ElementPtr sdf);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user