Fixed include order (#245)

See wpilibsuite/styleguide (#11).
This commit is contained in:
Tyler Veness
2016-09-25 16:50:13 -07:00
committed by Peter Johnson
parent 107a4cc1e2
commit 5dfae8d6bd
109 changed files with 175 additions and 87 deletions

View File

@@ -7,16 +7,16 @@
#pragma once
#ifdef _WIN32
#include <Winsock2.h>
#endif
#include <boost/pointer_cast.hpp>
#include <gazebo/gazebo.hh>
#include <gazebo/sensors/sensors.hh>
#include "switch.h"
#ifdef _WIN32
#include <Winsock2.h>
#endif
using namespace gazebo;
class ExternalLimitSwitch : public Switch {

View File

@@ -7,15 +7,15 @@
#pragma once
#ifdef _WIN32
#include <Winsock2.h>
#endif
#include <gazebo/gazebo.hh>
#include <gazebo/physics/physics.hh>
#include "switch.h"
#ifdef _WIN32
#include <Winsock2.h>
#endif
using namespace gazebo;
class InternalLimitSwitch : public Switch {