WPILibC++ 2027.0.0-alpha-4
Loading...
Searching...
No Matches
NTSendable.hpp
Go to the documentation of this file.
1// Copyright (c) FIRST and other WPILib contributors.
2// Open Source Software; you can modify and/or share it under the terms of
3// the WPILib BSD license file in the root directory of this project.
4
5#pragma once
6
8
9namespace wpi::nt {
10
12
13/**
14 * Interface for NetworkTable Sendable objects.
15 */
17 public:
18 /**
19 * Initializes this Sendable object.
20 *
21 * @param builder sendable builder
22 */
23 virtual void InitSendable(NTSendableBuilder& builder) = 0;
24
26};
27
28} // namespace wpi::nt
Helper class for building Sendable dashboard representations for NetworkTables.
Definition NTSendableBuilder.hpp:21
Interface for NetworkTable Sendable objects.
Definition NTSendable.hpp:16
void InitSendable(wpi::util::SendableBuilder &builder) override
Initializes this Sendable object.
virtual void InitSendable(NTSendableBuilder &builder)=0
Initializes this Sendable object.
Helper class for building Sendable dashboard representations.
Definition SendableBuilder.hpp:21
Interface for Sendable objects.
Definition Sendable.hpp:16
NetworkTables (ntcore) namespace.
Definition NTSendable.hpp:9