aqnwb 0.1.0
Loading...
Searching...
No Matches
VectorData.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
6
7namespace AQNWB::NWB
8{
12class VectorData : public Data
13{
14public:
19 inline std::string getDescription() const { return m_description; }
20
21private:
25 std::string m_description;
26};
27} // namespace AQNWB::NWB
An abstract data type for a dataset.
Definition Data.hpp:13
An n-dimensional dataset representing a column of a DynamicTable.
Definition VectorData.hpp:13
std::string getDescription() const
Gets the description of the table.
Definition VectorData.hpp:19
Namespace for all classes related to the NWB data standard.
Definition TimeSeries.hpp:9