SCRIPT namespace replacements

This commit is contained in:
PJ Reiniger
2025-11-07 20:00:05 -05:00
committed by Peter Johnson
parent ae6c043632
commit 9aca8e0fd6
2622 changed files with 22275 additions and 22275 deletions

View File

@@ -4,21 +4,21 @@ extra_includes:
- wpi/nt/NetworkTableInstance.hpp
classes:
frc::NetworkBooleanEvent:
wpi::NetworkBooleanEvent:
force_no_trampoline: true
methods:
NetworkBooleanEvent:
overloads:
EventLoop*, nt::BooleanTopic:
EventLoop*, wpi::nt::BooleanTopic:
cpp_code: |
[](EventLoop *loop, nt::BooleanTopic &topic) {
[](EventLoop *loop, wpi::nt::BooleanTopic &topic) {
return std::make_unique<NetworkBooleanEvent>(loop, std::move(topic));
}
EventLoop*, nt::BooleanSubscriber:
EventLoop*, wpi::nt::BooleanSubscriber:
cpp_code: |
[](EventLoop *loop, nt::BooleanSubscriber &sub) {
[](EventLoop *loop, wpi::nt::BooleanSubscriber &sub) {
return std::make_unique<NetworkBooleanEvent>(loop, std::move(sub));
}
EventLoop*, std::shared_ptr<nt::NetworkTable>, std::string_view:
EventLoop*, std::shared_ptr<wpi::nt::NetworkTable>, std::string_view:
EventLoop*, std::string_view, std::string_view:
EventLoop*, nt::NetworkTableInstance, std::string_view, std::string_view:
EventLoop*, wpi::nt::NetworkTableInstance, std::string_view, std::string_view: