[ntcore] Add typed C GetEntryValue and ReadQueueValue functions (#6256)

This commit is contained in:
Thad House
2024-01-19 20:38:01 -08:00
committed by GitHub
parent 2df82ec957
commit dfaad7ca22
7 changed files with 70 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ class ValueCircularBuffer {
m_storage.emplace_back(std::forward<Args...>(args...));
}
std::vector<Value> ReadValue();
std::vector<Value> ReadValue(unsigned int types);
template <ValidType T>
std::vector<Timestamped<typename TypeInfo<T>::Value>> Read();