mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
SCRIPT Run cc include replacements
This commit is contained in:
committed by
Peter Johnson
parent
f0a3c64121
commit
7c6efa41ae
@@ -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 "glass/other/Alerts.h"
|
||||
#include "wpi/glass/other/Alerts.hpp"
|
||||
|
||||
#include <IconsFontAwesome6.h>
|
||||
#include <imgui.h>
|
||||
|
||||
@@ -2,12 +2,12 @@
|
||||
// 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 "glass/other/CommandScheduler.h"
|
||||
#include "wpi/glass/other/CommandScheduler.hpp"
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
#include "glass/Context.h"
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/Context.hpp"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
// 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 "glass/other/CommandSelector.h"
|
||||
#include "wpi/glass/other/CommandSelector.hpp"
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -2,17 +2,17 @@
|
||||
// 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 "glass/other/DeviceTree.h"
|
||||
#include "wpi/glass/other/DeviceTree.hpp"
|
||||
|
||||
#include <cinttypes>
|
||||
#include <string>
|
||||
|
||||
#include <imgui.h>
|
||||
#include <wpi/StringExtras.h>
|
||||
#include "wpi/util/StringExtras.hpp"
|
||||
|
||||
#include "glass/Context.h"
|
||||
#include "glass/ContextInternal.h"
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/Context.hpp"
|
||||
#include "wpi/glass/ContextInternal.hpp"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -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 "glass/other/Drive.h"
|
||||
#include "wpi/glass/other/Drive.hpp"
|
||||
|
||||
#include <array>
|
||||
#include <cmath>
|
||||
@@ -11,7 +11,7 @@
|
||||
#include <imgui.h>
|
||||
#include <imgui_internal.h>
|
||||
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -2,15 +2,15 @@
|
||||
// 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 "glass/other/FMS.h"
|
||||
#include "wpi/glass/other/FMS.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
#include <imgui.h>
|
||||
#include <imgui_stdlib.h>
|
||||
#include <wpi/SmallString.h>
|
||||
#include "wpi/util/SmallString.hpp"
|
||||
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -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 "glass/other/Field2D.h"
|
||||
#include "wpi/glass/other/Field2D.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
@@ -13,29 +13,29 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <fields/fields.h>
|
||||
#include <frc/geometry/Pose2d.h>
|
||||
#include <frc/geometry/Rotation2d.h>
|
||||
#include <frc/geometry/Translation2d.h>
|
||||
#include "wpi/fields/fields.hpp"
|
||||
#include "wpi/math/geometry/Pose2d.hpp"
|
||||
#include "wpi/math/geometry/Rotation2d.hpp"
|
||||
#include "wpi/math/geometry/Translation2d.hpp"
|
||||
#include <imgui.h>
|
||||
#include <imgui_internal.h>
|
||||
#include <imgui_stdlib.h>
|
||||
#include <portable-file-dialogs.h>
|
||||
#include <units/angle.h>
|
||||
#include <units/length.h>
|
||||
#include <wpi/MemoryBuffer.h>
|
||||
#include <wpi/SmallString.h>
|
||||
#include <wpi/StringExtras.h>
|
||||
#include <wpi/StringMap.h>
|
||||
#include <wpi/fs.h>
|
||||
#include <wpi/json.h>
|
||||
#include <wpi/print.h>
|
||||
#include <wpigui.h>
|
||||
#include "wpi/gui/portable-file-dialogs.h"
|
||||
#include "wpi/units/angle.hpp"
|
||||
#include "wpi/units/length.hpp"
|
||||
#include "wpi/util/MemoryBuffer.hpp"
|
||||
#include "wpi/util/SmallString.hpp"
|
||||
#include "wpi/util/StringExtras.hpp"
|
||||
#include "wpi/util/StringMap.hpp"
|
||||
#include "wpi/util/fs.hpp"
|
||||
#include "wpi/util/json.hpp"
|
||||
#include "wpi/util/print.hpp"
|
||||
#include "wpi/gui/wpigui.hpp"
|
||||
|
||||
#include "glass/Context.h"
|
||||
#include "glass/Storage.h"
|
||||
#include "glass/support/ColorSetting.h"
|
||||
#include "glass/support/EnumSetting.h"
|
||||
#include "wpi/glass/Context.hpp"
|
||||
#include "wpi/glass/Storage.hpp"
|
||||
#include "wpi/glass/support/ColorSetting.hpp"
|
||||
#include "wpi/glass/support/EnumSetting.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -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 "glass/other/Log.h"
|
||||
#include "wpi/glass/other/Log.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@@ -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 "glass/other/Mechanism2D.h"
|
||||
#include "wpi/glass/other/Mechanism2D.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cmath>
|
||||
@@ -13,21 +13,21 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <frc/geometry/Pose2d.h>
|
||||
#include <frc/geometry/Rotation2d.h>
|
||||
#include <frc/geometry/Transform2d.h>
|
||||
#include <frc/geometry/Translation2d.h>
|
||||
#include "wpi/math/geometry/Pose2d.hpp"
|
||||
#include "wpi/math/geometry/Rotation2d.hpp"
|
||||
#include "wpi/math/geometry/Transform2d.hpp"
|
||||
#include "wpi/math/geometry/Translation2d.hpp"
|
||||
#include <imgui.h>
|
||||
#include <imgui_internal.h>
|
||||
#include <imgui_stdlib.h>
|
||||
#include <portable-file-dialogs.h>
|
||||
#include <units/angle.h>
|
||||
#include <units/length.h>
|
||||
#include <wpi/print.h>
|
||||
#include <wpigui.h>
|
||||
#include "wpi/gui/portable-file-dialogs.h"
|
||||
#include "wpi/units/angle.hpp"
|
||||
#include "wpi/units/length.hpp"
|
||||
#include "wpi/util/print.hpp"
|
||||
#include "wpi/gui/wpigui.hpp"
|
||||
|
||||
#include "glass/Context.h"
|
||||
#include "glass/Storage.h"
|
||||
#include "wpi/glass/Context.hpp"
|
||||
#include "wpi/glass/Storage.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
// 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 "glass/other/PIDController.h"
|
||||
#include "wpi/glass/other/PIDController.hpp"
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -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 "glass/other/Plot.h"
|
||||
#include "wpi/glass/other/Plot.hpp"
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <wpi/StringExtras.h>
|
||||
#include "wpi/util/StringExtras.hpp"
|
||||
|
||||
#if defined(__GNUC__)
|
||||
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
|
||||
@@ -26,17 +26,17 @@
|
||||
#include <imgui_stdlib.h>
|
||||
#include <implot.h>
|
||||
#include <implot_internal.h>
|
||||
#include <wpi/Signal.h>
|
||||
#include <wpi/SmallString.h>
|
||||
#include <wpi/SmallVector.h>
|
||||
#include <wpi/timestamp.h>
|
||||
#include "wpi/util/Signal.h"
|
||||
#include "wpi/util/SmallString.hpp"
|
||||
#include "wpi/util/SmallVector.hpp"
|
||||
#include "wpi/util/timestamp.h"
|
||||
|
||||
#include "glass/Context.h"
|
||||
#include "glass/DataSource.h"
|
||||
#include "glass/Storage.h"
|
||||
#include "glass/support/ColorSetting.h"
|
||||
#include "glass/support/EnumSetting.h"
|
||||
#include "glass/support/ExtraGuiWidgets.h"
|
||||
#include "wpi/glass/Context.hpp"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
#include "wpi/glass/Storage.hpp"
|
||||
#include "wpi/glass/support/ColorSetting.hpp"
|
||||
#include "wpi/glass/support/EnumSetting.hpp"
|
||||
#include "wpi/glass/support/ExtraGuiWidgets.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -2,11 +2,11 @@
|
||||
// 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 "glass/other/ProfiledPIDController.h"
|
||||
#include "wpi/glass/other/ProfiledPIDController.hpp"
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
#include "glass/DataSource.h"
|
||||
#include "wpi/glass/DataSource.hpp"
|
||||
|
||||
using namespace glass;
|
||||
|
||||
|
||||
@@ -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 "glass/other/StringChooser.h"
|
||||
#include "wpi/glass/other/StringChooser.hpp"
|
||||
|
||||
#include <imgui.h>
|
||||
|
||||
|
||||
@@ -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 "glass/other/Subsystem.h"
|
||||
#include "wpi/glass/other/Subsystem.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user