diff --git a/wpilibc/src/main/native/include/frc/smartdashboard/SendableBuilder.h b/wpilibc/src/main/native/include/frc/smartdashboard/SendableBuilder.h index 666d31efaa..a312e4f25e 100644 --- a/wpilibc/src/main/native/include/frc/smartdashboard/SendableBuilder.h +++ b/wpilibc/src/main/native/include/frc/smartdashboard/SendableBuilder.h @@ -25,12 +25,6 @@ class SendableBuilder { public: virtual ~SendableBuilder() = default; - /** - * Get the network table. - * @return The network table - */ - virtual std::shared_ptr GetTable() = 0; - /** * Set the string representation of the named data type that will be used * by the smart dashboard for this sendable. @@ -224,6 +218,12 @@ class SendableBuilder { const wpi::Twine& key, std::function& buf)> getter, std::function setter) = 0; + + /** + * Get the network table. + * @return The network table + */ + virtual std::shared_ptr GetTable() = 0; }; } // namespace frc