Skip to content

Commit

Permalink
Add docstrings for namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Aug 21, 2024
1 parent a4ed61c commit 5ffdea6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/BaseIO.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ using Status = AQNWB::Types::Status;
using SizeArray = AQNWB::Types::SizeArray;
using SizeType = AQNWB::Types::SizeType;

/*!
* \namespace AQNWB
* \brief The main namespace for AqNWB
*/
namespace AQNWB
{

Expand Down
4 changes: 4 additions & 0 deletions src/hdf5/HDF5IO.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ class DataType;
class Exception;
} // namespace H5

/*!
* \namespace AQNWB::HDF5
* \brief Namespace for all components of the HDF5 I/O backend
*/
namespace AQNWB::HDF5
{
class HDF5RecordingData; // declare here because gets used in HDF5IO class
Expand Down
4 changes: 4 additions & 0 deletions src/nwb/NWBFile.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
#include "Types.hpp"
#include "nwb/base/TimeSeries.hpp"

/*!
* \namespace AQNWB::NWB
* \brief Namespace for all classes related to the NWB data standard
*/
namespace AQNWB::NWB
{

Expand Down

0 comments on commit 5ffdea6

Please sign in to comment.