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

@@ -67,15 +67,15 @@ depends = ["wpiutil-casters"]
[tool.semiwrap.extension_modules."wpiutil._wpiutil".headers]
# wpi
StackTrace = "wpi/StackTrace.h"
Synchronization = "wpi/Synchronization.h"
RawFrame = "wpi/RawFrame.h"
StackTrace = "wpi/util/StackTrace.hpp"
Synchronization = "wpi/util/Synchronization.h"
RawFrame = "wpi/util/RawFrame.h"
# wpi/sendable
Sendable = "wpi/sendable/Sendable.h"
SendableBuilder = "wpi/sendable/SendableBuilder.h"
#SendableHelper = "wpi/sendable/SendableHelper.h"
SendableRegistry = "wpi/sendable/SendableRegistry.h"
Sendable = "wpi/util/sendable/Sendable.hpp"
SendableBuilder = "wpi/util/sendable/SendableBuilder.hpp"
#SendableHelper = "wpi/util/sendable/SendableHelper.hpp"
SendableRegistry = "wpi/util/sendable/SendableRegistry.hpp"
WPyStruct = "src/wpistruct/wpystruct_fns.h"

View File

@@ -1,5 +1,5 @@
extra_includes:
- wpi/sendable/SendableBuilder.h
- wpi/util/sendable/SendableBuilder.hpp
classes:
wpi::Sendable:

View File

@@ -1,6 +1,6 @@
extra_includes:
- wpi/sendable/Sendable.h
- wpi/sendable/SendableBuilder.h
- wpi/util/sendable/Sendable.hpp
- wpi/util/sendable/SendableBuilder.hpp
classes:
wpi::SendableRegistry:

View File

@@ -1,6 +1,6 @@
#include <semiwrap.h>
#include <wpi/StackTrace.h>
#include "wpi/util/StackTrace.hpp"
py::object &get_hook_ref() {
static py::object hook;

View File

@@ -2,7 +2,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <wpi/array.h>
#include "wpi/util/array.hpp"
namespace pybind11 {
namespace detail {

View File

@@ -3,7 +3,7 @@
#include <pybind11/pybind11.h>
#include <wpi/ct_string.h>
#include "wpi/util/ct_string.hpp"
namespace pybind11 {
namespace detail {

View File

@@ -36,7 +36,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <string>
#include <vector>
#include "wpi/json.h"
#include "wpi/util/json.hpp"
#include "pybind11/pybind11.h"

View File

@@ -4,7 +4,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <wpi/SmallSet.h>
#include "wpi/util/SmallSet.hpp"
namespace pybind11
{

View File

@@ -4,7 +4,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <wpi/SmallVector.h>
#include "wpi/util/SmallVector.hpp"
namespace pybind11
{

View File

@@ -3,7 +3,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <wpi/SmallVector.h>
#include "wpi/util/SmallVector.hpp"
namespace pybind11
{

View File

@@ -4,7 +4,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <wpi/SmallVector.h>
#include "wpi/util/SmallVector.hpp"
#include <span>
namespace pybind11 {

View File

@@ -4,7 +4,7 @@
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <wpi/StringMap.h>
#include "wpi/util/StringMap.hpp"
namespace pybind11
{

View File

@@ -6,7 +6,7 @@
#include <string_view>
#include <fmt/format.h>
#include <wpi/struct/Struct.h>
#include "wpi/util/struct/Struct.hpp"
#include <pybind11/functional.h>
#include <pybind11/typing.h>