mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
[ntcore, cscore, wpiutil] Standardize template impl files on .inc extension (NFC) (#3124)
This commit is contained in:
@@ -636,6 +636,6 @@ class NetworkTableEntry final {
|
||||
|
||||
} // namespace nt
|
||||
|
||||
#include "networktables/NetworkTableEntry.inl"
|
||||
#include "networktables/NetworkTableEntry.inc"
|
||||
|
||||
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// 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.
|
||||
|
||||
#ifndef NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_INL_
|
||||
#define NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_INL_
|
||||
#ifndef NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_INC_
|
||||
#define NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_INC_
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
@@ -340,4 +340,4 @@ inline void NetworkTableEntry::RemoveListener(NT_EntryListener entry_listener) {
|
||||
|
||||
} // namespace nt
|
||||
|
||||
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_INL_
|
||||
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_INC_
|
||||
@@ -567,6 +567,6 @@ class NetworkTableInstance final {
|
||||
|
||||
} // namespace nt
|
||||
|
||||
#include "networktables/NetworkTableInstance.inl"
|
||||
#include "networktables/NetworkTableInstance.inc"
|
||||
|
||||
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// 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.
|
||||
|
||||
#ifndef NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_INL_
|
||||
#define NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_INL_
|
||||
#ifndef NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_INC_
|
||||
#define NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_INC_
|
||||
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
@@ -208,4 +208,4 @@ inline bool NetworkTableInstance::WaitForLoggerQueue(double timeout) {
|
||||
|
||||
} // namespace nt
|
||||
|
||||
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_INL_
|
||||
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_INC_
|
||||
@@ -101,6 +101,6 @@ class RpcCall final {
|
||||
|
||||
} // namespace nt
|
||||
|
||||
#include "networktables/RpcCall.inl"
|
||||
#include "networktables/RpcCall.inc"
|
||||
|
||||
#endif // NTCORE_NETWORKTABLES_RPCCALL_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// 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.
|
||||
|
||||
#ifndef NTCORE_NETWORKTABLES_RPCCALL_INL_
|
||||
#define NTCORE_NETWORKTABLES_RPCCALL_INL_
|
||||
#ifndef NTCORE_NETWORKTABLES_RPCCALL_INC_
|
||||
#define NTCORE_NETWORKTABLES_RPCCALL_INC_
|
||||
|
||||
#include <string>
|
||||
#include <utility>
|
||||
@@ -48,4 +48,4 @@ inline void RpcCall::CancelResult() {
|
||||
|
||||
} // namespace nt
|
||||
|
||||
#endif // NTCORE_NETWORKTABLES_RPCCALL_INL_
|
||||
#endif // NTCORE_NETWORKTABLES_RPCCALL_INC_
|
||||
Reference in New Issue
Block a user