aqnwb 0.1.0
Loading...
Searching...
No Matches
NWBDataInterface.hpp
Go to the documentation of this file.
1#pragma once
2
3// Common STL includes
4#include <memory>
5#include <optional>
6#include <string>
7#include <vector>
8// Base AqNWB includes for IO and RegisteredType
9#include "io/BaseIO.hpp"
10#include "io/ReadIO.hpp"
12// Include for parent type
14// Include for the namespace schema header
15#include "spec/core.hpp"
16
17namespace AQNWB::NWB
18{
19
25{
26public:
32 NWBDataInterface(const std::string& path,
33 std::shared_ptr<AQNWB::IO::BaseIO> io);
34
38 virtual ~NWBDataInterface() override {}
39
45
47};
48
49} // namespace AQNWB::NWB
AQNWB::Types::Status Status
Definition BaseIO.hpp:22
#define REGISTER_SUBCLASS(T, NAMESPACE)
Macro to register a subclass with the RegisteredType class registry.
Definition RegisteredType.hpp:410
An abstract data type for a generic container storing collections of data and metadata....
Definition NWBContainer.hpp:25
An abstract data type for a generic container storing collections of data, as opposed to metadata.
Definition NWBDataInterface.hpp:25
virtual ~NWBDataInterface() override
Virtual destructor.
Definition NWBDataInterface.hpp:38
NWBDataInterface(const std::string &path, std::shared_ptr< AQNWB::IO::BaseIO > io)
Constructor.
Definition NWBDataInterface.cpp:11
Status initialize()
Initialize the object.
Definition NWBDataInterface.cpp:17
Namespace for all classes related to the NWB data standard.
Definition NWBContainer.hpp:18
const std::string namespaceName
Definition core.hpp:21