jerrym | f157933 | 2013-02-07 01:56:28 +0000 | [diff] [blame] | 1 | /*----------------------------------------------------------------------------*/
|
| 2 | /* Copyright (c) FIRST 2008. All Rights Reserved. */
|
| 3 | /* Open Source Software - may be modified and shared by FRC teams. The code */
|
| 4 | /* must be accompanied by the FIRST BSD license file in $(WIND_BASE)/WPILib. */
|
| 5 | /*----------------------------------------------------------------------------*/
|
| 6 |
|
| 7 | #ifndef WPILIB_H_
|
| 8 | #define WPILIB_H_
|
| 9 |
|
| 10 | #include "string.h"
|
| 11 | #include <iostream.h>
|
| 12 |
|
| 13 | #include "Accelerometer.h"
|
| 14 | #include "ADXL345_I2C.h"
|
| 15 | #include "ADXL345_SPI.h"
|
| 16 | #include "AnalogChannel.h"
|
| 17 | #include "AnalogModule.h"
|
| 18 | #include "AnalogTrigger.h"
|
| 19 | #include "AnalogTriggerOutput.h"
|
| 20 | #include "Buttons/AnalogIOButton.h"
|
| 21 | #include "Buttons/DigitalIOButton.h"
|
| 22 | #include "Buttons/InternalButton.h"
|
| 23 | #include "Buttons/JoystickButton.h"
|
| 24 | #include "Buttons/NetworkButton.h"
|
| 25 | #include "CANJaguar.h"
|
| 26 | #include "Commands/Command.h"
|
| 27 | #include "Commands/CommandGroup.h"
|
| 28 | #include "Commands/PIDCommand.h"
|
| 29 | #include "Commands/PIDSubsystem.h"
|
| 30 | #include "Commands/PrintCommand.h"
|
| 31 | #include "Commands/Scheduler.h"
|
| 32 | #include "Commands/StartCommand.h"
|
| 33 | #include "Commands/Subsystem.h"
|
| 34 | #include "Commands/WaitCommand.h"
|
| 35 | #include "Commands/WaitForChildren.h"
|
| 36 | #include "Commands/WaitUntilCommand.h"
|
| 37 | #include "Compressor.h"
|
| 38 | #include "Counter.h"
|
| 39 | #include "Dashboard.h"
|
| 40 | #include "DigitalInput.h"
|
| 41 | #include "DigitalModule.h"
|
| 42 | #include "DigitalOutput.h"
|
| 43 | #include "DigitalSource.h"
|
| 44 | #include "DoubleSolenoid.h"
|
| 45 | #include "DriverStation.h"
|
| 46 | #include "DriverStationEnhancedIO.h"
|
| 47 | #include "DriverStationLCD.h"
|
| 48 | #include "Encoder.h"
|
| 49 | #include "ErrorBase.h"
|
| 50 | #include "GearTooth.h"
|
| 51 | #include "GenericHID.h"
|
| 52 | #include "Gyro.h"
|
| 53 | #include "HiTechnicCompass.h"
|
| 54 | #include "HiTechnicColorSensor.h"
|
| 55 | #include "I2C.h"
|
| 56 | #include "IterativeRobot.h"
|
| 57 | #include "InterruptableSensorBase.h"
|
| 58 | #include "Jaguar.h"
|
| 59 | #include "Joystick.h"
|
| 60 | #include "Kinect.h"
|
| 61 | #include "KinectStick.h"
|
| 62 | #include "Notifier.h"
|
| 63 | #include "PIDController.h"
|
| 64 | #include "PIDOutput.h"
|
| 65 | #include "PIDSource.h"
|
| 66 | #include "Preferences.h"
|
| 67 | #include "PWM.h"
|
| 68 | #include "Relay.h"
|
| 69 | #include "Resource.h"
|
| 70 | #include "RobotBase.h"
|
| 71 | #include "RobotDrive.h"
|
| 72 | #include "SensorBase.h"
|
| 73 | #include "SerialPort.h"
|
| 74 | #include "Servo.h"
|
| 75 | #include "SimpleRobot.h"
|
| 76 | #include "SmartDashboard/SendableChooser.h"
|
| 77 | #include "SmartDashboard/SmartDashboard.h"
|
| 78 | #include "Solenoid.h"
|
| 79 | #include "SpeedController.h"
|
| 80 | #include "SPI.h"
|
| 81 | #include "Synchronized.h"
|
| 82 | #include "Talon.h"
|
| 83 | #include "Task.h"
|
| 84 | #include "Timer.h"
|
| 85 | #include "Ultrasonic.h"
|
| 86 | #include "Utility.h"
|
| 87 | #include "Victor.h"
|
| 88 | #include "Vision/AxisCamera.h"
|
| 89 | #include "Watchdog.h"
|
| 90 | #include "WPIErrors.h"
|
| 91 |
|
| 92 | #endif /*WPILIB_H_*/
|