SCRIPT Run cc include replacements

This commit is contained in:
PJ Reiniger
2025-11-07 19:56:21 -05:00
committed by Peter Johnson
parent f0a3c64121
commit 7c6efa41ae
2477 changed files with 8882 additions and 8882 deletions

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeCommand2.h"
#include "ReplaceMeCommand2.hpp"
ReplaceMeCommand2::ReplaceMeCommand2() {
// Use addRequirements() here to declare subsystem dependencies.

View File

@@ -4,8 +4,8 @@
#pragma once
#include <frc2/command/Command.h>
#include <frc2/command/CommandHelper.h>
#include "wpi/commands2/Command.hpp"
#include "wpi/commands2/CommandHelper.hpp"
/**
* An example command.

View File

@@ -2,6 +2,6 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeEmptyClass.h"
#include "ReplaceMeEmptyClass.hpp"
ReplaceMeEmptyClass::ReplaceMeEmptyClass() = default;

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeInstantCommand2.h"
#include "ReplaceMeInstantCommand2.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -4,8 +4,8 @@
#pragma once
#include <frc2/command/CommandHelper.h>
#include <frc2/command/InstantCommand.h>
#include "wpi/commands2/CommandHelper.hpp"
#include "wpi/commands2/InstantCommand.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeParallelCommandGroup.h"
#include "ReplaceMeParallelCommandGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -4,8 +4,8 @@
#pragma once
#include <frc2/command/CommandHelper.h>
#include <frc2/command/ParallelCommandGroup.h>
#include "wpi/commands2/CommandHelper.hpp"
#include "wpi/commands2/ParallelCommandGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -2,9 +2,9 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeParallelDeadlineGroup.h"
#include "ReplaceMeParallelDeadlineGroup.hpp"
#include <frc2/command/InstantCommand.h>
#include "wpi/commands2/InstantCommand.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -4,8 +4,8 @@
#pragma once
#include <frc2/command/CommandHelper.h>
#include <frc2/command/ParallelDeadlineGroup.h>
#include "wpi/commands2/CommandHelper.hpp"
#include "wpi/commands2/ParallelDeadlineGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeParallelRaceGroup.h"
#include "ReplaceMeParallelRaceGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -4,8 +4,8 @@
#pragma once
#include <frc2/command/CommandHelper.h>
#include <frc2/command/ParallelRaceGroup.h>
#include "wpi/commands2/CommandHelper.hpp"
#include "wpi/commands2/ParallelRaceGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeSequentialCommandGroup.h"
#include "ReplaceMeSequentialCommandGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -4,8 +4,8 @@
#pragma once
#include <frc2/command/CommandHelper.h>
#include <frc2/command/SequentialCommandGroup.h>
#include "wpi/commands2/CommandHelper.hpp"
#include "wpi/commands2/SequentialCommandGroup.hpp"
// NOTE: Consider using this command inline, rather than writing a subclass.
// For more information, see:

View File

@@ -2,7 +2,7 @@
// Open Source Software; you can modify and/or share it under the terms of
// the WPILib BSD license file in the root directory of this project.
#include "ReplaceMeSubsystem2.h"
#include "ReplaceMeSubsystem2.hpp"
ReplaceMeSubsystem2::ReplaceMeSubsystem2() = default;

View File

@@ -4,7 +4,7 @@
#pragma once
#include <frc2/command/SubsystemBase.h>
#include "wpi/commands2/SubsystemBase.hpp"
class ReplaceMeSubsystem2 : public frc2::SubsystemBase {
public: