mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
Removed tabs
This commit is contained in:
parent
0036f2dd7a
commit
214318b5fb
@ -2,7 +2,6 @@
|
||||
#define COMMAND_BASE_H
|
||||
|
||||
#include <string>
|
||||
//#include "Commands/Drive.h"
|
||||
#include "Subsystems/Drivetrain.h"
|
||||
#include "Subsystems/Collector.h"
|
||||
#include "Subsystems/Elevator.h"
|
||||
@ -10,13 +9,13 @@
|
||||
#include "WPILib.h"
|
||||
|
||||
class CommandBase: public Command {
|
||||
public:
|
||||
CommandBase(char const *name);
|
||||
CommandBase();
|
||||
static void init();
|
||||
static Drivetrain *drivetrain;
|
||||
static Collector *collector;
|
||||
static Elevator *elevator;
|
||||
static OI *oi;
|
||||
public:
|
||||
CommandBase(char const *name);
|
||||
CommandBase();
|
||||
static void init();
|
||||
static Drivetrain *drivetrain;
|
||||
static Collector *collector;
|
||||
static Elevator *elevator;
|
||||
static OI *oi;
|
||||
};
|
||||
#endif
|
||||
|
@ -6,7 +6,7 @@ void Collect::Initialize(){
|
||||
void Collect::Execute(){
|
||||
}
|
||||
bool Collect::IsFinished(){
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
void Collect::End(){
|
||||
|
||||
|
@ -5,13 +5,13 @@
|
||||
#include "WPILib.h"
|
||||
|
||||
class Collect: public CommandBase{
|
||||
public:
|
||||
Collect();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
public:
|
||||
Collect();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -6,7 +6,7 @@ void Drive::Initialize(){
|
||||
void Drive::Execute(){
|
||||
}
|
||||
bool Drive::IsFinished(){
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
void Drive::End(){
|
||||
|
||||
|
@ -5,13 +5,13 @@
|
||||
#include "WPILib.h"
|
||||
|
||||
class Drive: public CommandBase{
|
||||
public:
|
||||
Drive();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
public:
|
||||
Drive();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -6,7 +6,7 @@ void Eject::Initialize(){
|
||||
void Eject::Execute(){
|
||||
}
|
||||
bool Eject::IsFinished(){
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
void Eject::End(){
|
||||
|
||||
|
@ -5,13 +5,13 @@
|
||||
#include "WPILib.h"
|
||||
|
||||
class Eject: public CommandBase{
|
||||
public:
|
||||
Eject();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
public:
|
||||
Eject();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -6,7 +6,7 @@ void Lower::Initialize(){
|
||||
void Lower::Execute(){
|
||||
}
|
||||
bool Lower::IsFinished(){
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
void Lower::End(){
|
||||
|
||||
|
@ -5,13 +5,13 @@
|
||||
#include "WPILib.h"
|
||||
|
||||
class Lower: public CommandBase{
|
||||
public:
|
||||
Lower();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
public:
|
||||
Lower();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -6,7 +6,7 @@ void Raise::Initialize(){
|
||||
void Raise::Execute(){
|
||||
}
|
||||
bool Raise::IsFinished(){
|
||||
return false;
|
||||
return false;
|
||||
}
|
||||
void Raise::End(){
|
||||
|
||||
|
@ -5,13 +5,13 @@
|
||||
#include "WPILib.h"
|
||||
|
||||
class Raise: public CommandBase{
|
||||
public:
|
||||
Raise();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
public:
|
||||
Raise();
|
||||
void Initialize();
|
||||
void Execute();
|
||||
bool IsFinished();
|
||||
void End();
|
||||
void Interrupted();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
6
src/OI.h
6
src/OI.h
@ -5,8 +5,8 @@
|
||||
|
||||
class OI
|
||||
{
|
||||
private:
|
||||
public:
|
||||
OI();
|
||||
private:
|
||||
public:
|
||||
OI();
|
||||
};
|
||||
#endif
|
||||
|
@ -4,9 +4,9 @@
|
||||
#include "WPILib.h"
|
||||
class Collector: public Subsystem
|
||||
{
|
||||
private:
|
||||
public:
|
||||
Collector();
|
||||
void InitDefaultCommand();
|
||||
private:
|
||||
public:
|
||||
Collector();
|
||||
void InitDefaultCommand();
|
||||
};
|
||||
#endif
|
||||
|
@ -4,9 +4,9 @@
|
||||
#include "WPILib.h"
|
||||
class Drivetrain: public Subsystem
|
||||
{
|
||||
private:
|
||||
public:
|
||||
Drivetrain();
|
||||
void InitDefaultCommand();
|
||||
private:
|
||||
public:
|
||||
Drivetrain();
|
||||
void InitDefaultCommand();
|
||||
};
|
||||
#endif
|
||||
|
@ -4,9 +4,9 @@
|
||||
#include "WPILib.h"
|
||||
class Elevator: public Subsystem
|
||||
{
|
||||
private:
|
||||
public:
|
||||
Elevator();
|
||||
void InitDefaultCommand();
|
||||
private:
|
||||
public:
|
||||
Elevator();
|
||||
void InitDefaultCommand();
|
||||
};
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user