mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
SCRIPT Run cc include replacements
This commit is contained in:
committed by
Peter Johnson
parent
f0a3c64121
commit
7c6efa41ae
@@ -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"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
extra_includes:
|
||||
- wpi/sendable/SendableBuilder.h
|
||||
- wpi/util/sendable/SendableBuilder.hpp
|
||||
|
||||
classes:
|
||||
wpi::Sendable:
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <pybind11/pybind11.h>
|
||||
|
||||
#include <wpi/ct_string.h>
|
||||
#include "wpi/util/ct_string.hpp"
|
||||
|
||||
namespace pybind11 {
|
||||
namespace detail {
|
||||
|
||||
@@ -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"
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <pybind11/pybind11.h>
|
||||
#include <pybind11/stl.h>
|
||||
|
||||
#include <wpi/SmallSet.h>
|
||||
#include "wpi/util/SmallSet.hpp"
|
||||
|
||||
namespace pybind11
|
||||
{
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <pybind11/pybind11.h>
|
||||
#include <pybind11/stl.h>
|
||||
|
||||
#include <wpi/SmallVector.h>
|
||||
#include "wpi/util/SmallVector.hpp"
|
||||
|
||||
namespace pybind11
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <pybind11/pybind11.h>
|
||||
#include <pybind11/stl.h>
|
||||
#include <wpi/SmallVector.h>
|
||||
#include "wpi/util/SmallVector.hpp"
|
||||
|
||||
namespace pybind11
|
||||
{
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <pybind11/pybind11.h>
|
||||
#include <pybind11/stl.h>
|
||||
|
||||
#include <wpi/StringMap.h>
|
||||
#include "wpi/util/StringMap.hpp"
|
||||
|
||||
namespace pybind11
|
||||
{
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user