Move CameraServer and WPILib headers into their own folder

The old headers were moved into folders because doing so avoids polluting
the system include directories.

Folder names were also normalized to lowercase.
This commit is contained in:
Tyler Veness
2018-07-20 00:03:45 -07:00
committed by Peter Johnson
parent 31ced30c1e
commit d89b7dd412
728 changed files with 1876 additions and 1851 deletions

View File

@@ -5,9 +5,9 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/Solenoid.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/Solenoid.h"
namespace hal {
TEST(HALTests, RuntimeType) {

View File

@@ -5,10 +5,10 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/CANAPI.h"
#include "HAL/HAL.h"
#include "MockData/CanData.h"
#include "gtest/gtest.h"
#include "hal/CANAPI.h"
#include "hal/HAL.h"
#include "mockdata/CanData.h"
namespace hal {
struct CANTestStore {

View File

@@ -5,9 +5,9 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/handles/IndexedClassedHandleResource.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/handles/IndexedClassedHandleResource.h"
#define HAL_TestHandle HAL_Handle

View File

@@ -5,8 +5,8 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
int main(int argc, char** argv) {
HAL_Initialize(500, 0);

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/AnalogInput.h"
#include "HAL/HAL.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/AnalogInData.h"
#include "gtest/gtest.h"
#include "hal/AnalogInput.h"
#include "hal/HAL.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/AnalogInData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/AnalogOutput.h"
#include "HAL/HAL.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/AnalogOutData.h"
#include "gtest/gtest.h"
#include "hal/AnalogOutput.h"
#include "hal/HAL.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/AnalogOutData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/DIO.h"
#include "HAL/HAL.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/DIOData.h"
#include "gtest/gtest.h"
#include "hal/DIO.h"
#include "hal/HAL.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/DIOData.h"
namespace hal {

View File

@@ -7,10 +7,10 @@
#include <cstring>
#include "HAL/HAL.h"
#include "HAL/Solenoid.h"
#include "MockData/DriverStationData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/Solenoid.h"
#include "mockdata/DriverStationData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/I2C.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/I2CData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/I2C.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/I2CData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/Solenoid.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/PCMData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/Solenoid.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/PCMData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/PDP.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/PDPData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/PDP.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/PDPData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/PWM.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/PWMData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/PWM.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/PWMData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/Relay.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/RelayData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/Relay.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/RelayData.h"
namespace hal {

View File

@@ -5,11 +5,11 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "HAL/SPI.h"
#include "HAL/handles/HandlesInternal.h"
#include "MockData/SPIData.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "hal/SPI.h"
#include "hal/handles/HandlesInternal.h"
#include "mockdata/SPIData.h"
namespace hal {

View File

@@ -5,10 +5,10 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/Accelerometer.h"
#include "HAL/HAL.h"
#include "Simulation/AccelerometerSim.h"
#include "gtest/gtest.h"
#include "hal/Accelerometer.h"
#include "hal/HAL.h"
#include "simulation/AccelerometerSim.h"
using namespace frc::sim;

View File

@@ -5,23 +5,23 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "HAL/HAL.h"
#include "Simulation/AccelerometerSim.h"
#include "Simulation/AnalogGyroSim.h"
#include "Simulation/AnalogInSim.h"
#include "Simulation/AnalogOutSim.h"
#include "Simulation/AnalogTriggerSim.h"
#include "Simulation/DIOSim.h"
#include "Simulation/DigitalPWMSim.h"
#include "Simulation/DriverStationSim.h"
#include "Simulation/EncoderSim.h"
#include "Simulation/PCMSim.h"
#include "Simulation/PDPSim.h"
#include "Simulation/PWMSim.h"
#include "Simulation/RelaySim.h"
#include "Simulation/RoboRioSim.h"
#include "Simulation/SPIAccelerometerSim.h"
#include "gtest/gtest.h"
#include "hal/HAL.h"
#include "simulation/AccelerometerSim.h"
#include "simulation/AnalogGyroSim.h"
#include "simulation/AnalogInSim.h"
#include "simulation/AnalogOutSim.h"
#include "simulation/AnalogTriggerSim.h"
#include "simulation/DIOSim.h"
#include "simulation/DigitalPWMSim.h"
#include "simulation/DriverStationSim.h"
#include "simulation/EncoderSim.h"
#include "simulation/PCMSim.h"
#include "simulation/PDPSim.h"
#include "simulation/PWMSim.h"
#include "simulation/RelaySim.h"
#include "simulation/RoboRioSim.h"
#include "simulation/SPIAccelerometerSim.h"
using namespace frc::sim;