[ntcore, cscore, wpiutil] Standardize template impl files on .inc extension (NFC) (#3124)

This commit is contained in:
Tyler Veness
2021-05-25 22:19:30 -07:00
committed by GitHub
parent e7d9ba135c
commit 393bf23c0c
20 changed files with 28 additions and 28 deletions

View File

@@ -636,6 +636,6 @@ class NetworkTableEntry final {
} // namespace nt
#include "networktables/NetworkTableEntry.inl"
#include "networktables/NetworkTableEntry.inc"
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEENTRY_H_

View File

@@ -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_

View File

@@ -567,6 +567,6 @@ class NetworkTableInstance final {
} // namespace nt
#include "networktables/NetworkTableInstance.inl"
#include "networktables/NetworkTableInstance.inc"
#endif // NTCORE_NETWORKTABLES_NETWORKTABLEINSTANCE_H_

View File

@@ -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_

View File

@@ -101,6 +101,6 @@ class RpcCall final {
} // namespace nt
#include "networktables/RpcCall.inl"
#include "networktables/RpcCall.inc"
#endif // NTCORE_NETWORKTABLES_RPCCALL_H_

View File

@@ -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_