Moves C++ templates and examples to match gradle setup (#1065)

This commit is contained in:
Thad House
2018-05-15 21:25:24 -07:00
committed by Peter Johnson
parent d564e19ef3
commit cff475c1fc
112 changed files with 108 additions and 99 deletions

View File

@@ -5,9 +5,9 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "ExampleCommand.h"
#include "Commands/ExampleCommand.h"
#include "../Robot.h"
#include "Robot.h"
ExampleCommand::ExampleCommand() {
// Use Requires() here to declare subsystem dependencies

View File

@@ -5,9 +5,9 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "MyAutoCommand.h"
#include "Commands/MyAutoCommand.h"
#include "../Robot.h"
#include "Robot.h"
MyAutoCommand::MyAutoCommand() {
// Use Requires() here to declare subsystem dependencies

View File

@@ -5,9 +5,9 @@
/* the project. */
/*----------------------------------------------------------------------------*/
#include "ExampleSubsystem.h"
#include "Subsystems/ExampleSubsystem.h"
#include "../RobotMap.h"
#include "RobotMap.h"
ExampleSubsystem::ExampleSubsystem() : frc::Subsystem("ExampleSubsystem") {}