[ntcore] NetworkTables 4 (#3217)

This commit is contained in:
Peter Johnson
2022-10-08 10:01:31 -07:00
committed by GitHub
parent 90cfa00115
commit 77301b126c
380 changed files with 34573 additions and 22095 deletions

View File

@@ -35,7 +35,7 @@ class ShuffleboardComponentBase : public virtual ShuffleboardValue {
const std::string& GetType() const;
protected:
wpi::StringMap<std::shared_ptr<nt::Value>> m_properties;
wpi::StringMap<nt::Value> m_properties;
bool m_metadataDirty = true;
int m_column = -1;
int m_row = -1;
@@ -49,7 +49,7 @@ class ShuffleboardComponentBase : public virtual ShuffleboardValue {
/**
* Gets the custom properties for this component. May be null.
*/
const wpi::StringMap<std::shared_ptr<nt::Value>>& GetProperties() const;
const wpi::StringMap<nt::Value>& GetProperties() const;
};
} // namespace frc