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,22 +2,22 @@
// 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 "App.h"
#include "App.hpp"
#include <memory>
#include <string_view>
#include <glass/Context.h>
#include <glass/MainMenuBar.h>
#include <glass/Storage.h>
#include "wpi/glass/Context.hpp"
#include "wpi/glass/MainMenuBar.hpp"
#include "wpi/glass/Storage.hpp"
#include <imgui.h>
#include <imgui_internal.h>
#include <libssh/libssh.h>
#include <wpigui.h>
#include <wpigui_openurl.h>
#include "wpi/gui/wpigui.hpp"
#include "wpi/gui/wpigui_openurl.hpp"
#include "Downloader.h"
#include "Exporter.h"
#include "Downloader.hpp"
#include "Exporter.hpp"
namespace gui = wpi::gui;

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 "Downloader.h"
#include "Downloader.hpp"
#ifdef _WIN32
#include <fcntl.h>
@@ -18,15 +18,15 @@
#include <vector>
#include <fmt/format.h>
#include <glass/Storage.h>
#include "wpi/glass/Storage.hpp"
#include <imgui.h>
#include <imgui_stdlib.h>
#include <libssh/sftp.h>
#include <portable-file-dialogs.h>
#include <wpi/StringExtras.h>
#include <wpi/fs.h>
#include "wpi/gui/portable-file-dialogs.h"
#include "wpi/util/StringExtras.hpp"
#include "wpi/util/fs.hpp"
#include "Sftp.h"
#include "Sftp.hpp"
Downloader::Downloader(glass::Storage& storage)
: m_serverTeam{storage.GetString("serverTeam")},

View File

@@ -9,8 +9,8 @@
#include <thread>
#include <vector>
#include <wpi/condition_variable.h>
#include <wpi/mutex.h>
#include "wpi/util/condition_variable.hpp"
#include "wpi/util/mutex.hpp"
namespace glass {
class Storage;

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 "Exporter.h"
#include "Exporter.hpp"
#include <atomic>
#include <ctime>
@@ -19,24 +19,24 @@
#include <fmt/chrono.h>
#include <fmt/format.h>
#include <fmt/ranges.h>
#include <glass/Storage.h>
#include "wpi/glass/Storage.hpp"
#include <imgui.h>
#include <imgui_internal.h>
#include <imgui_stdlib.h>
#include <portable-file-dialogs.h>
#include <wpi/DenseMap.h>
#include <wpi/MemoryBuffer.h>
#include <wpi/SmallVector.h>
#include <wpi/SpanExtras.h>
#include <wpi/StringExtras.h>
#include <wpi/datalog/DataLogReaderThread.h>
#include <wpi/fmt/raw_ostream.h>
#include <wpi/fs.h>
#include <wpi/mutex.h>
#include <wpi/print.h>
#include <wpi/raw_ostream.h>
#include "wpi/gui/portable-file-dialogs.h"
#include "wpi/util/DenseMap.hpp"
#include "wpi/util/MemoryBuffer.hpp"
#include "wpi/util/SmallVector.hpp"
#include "wpi/util/SpanExtras.hpp"
#include "wpi/util/StringExtras.hpp"
#include "wpi/datalog/DataLogReaderThread.hpp"
#include "wpi/util/fmt/raw_ostream.hpp"
#include "wpi/util/fs.hpp"
#include "wpi/util/mutex.hpp"
#include "wpi/util/print.hpp"
#include "wpi/util/raw_ostream.hpp"
#include "App.h"
#include "App.hpp"
namespace {
struct InputFile {

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 "Sftp.h"
#include "Sftp.hpp"
#include <string>
#include <utility>