Files
allwpilib/wpilibcExamples/src/main/cpp/commands/paralleldeadlinegroup/ReplaceMeParallelDeadlineGroup.hpp

19 lines
733 B
C++
Raw Normal View History

// Copyright (c) FIRST and other WPILib contributors.
// 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.
#pragma once
2025-11-07 19:57:55 -05:00
#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:
// https://docs.wpilib.org/en/stable/docs/software/commandbased/convenience-features.html
class ReplaceMeParallelDeadlineGroup
2025-11-07 20:00:05 -05:00
: public wpi::cmd::CommandHelper<wpi::cmd::ParallelDeadlineGroup,
2025-11-07 20:01:58 -05:00
ReplaceMeParallelDeadlineGroup> {
public:
ReplaceMeParallelDeadlineGroup();
};