Skip to content

Commit

Permalink
add types to AQNWBIO namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
stephprince committed Apr 1, 2024
1 parent 76a974c commit f5db6a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/Types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#include <vector>

namespace AQNWBIO
{
/**
* @brief Provides definitions for various types used in the project.
*/
Expand All @@ -27,3 +29,4 @@ class Types
*/
using SizeArray = std::vector<size_t>;
};
} // namespace AQNWBIO
6 changes: 3 additions & 3 deletions src/io/BaseIO.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
#define DEFAULT_STR_SIZE 256
#define DEFAULT_ARRAY_SIZE 1

using Status = Types::Status;
using SizeArray = Types::SizeArray;
using SizeType = Types::SizeType;
using Status = AQNWBIO::Types::Status;
using SizeArray = AQNWBIO::Types::SizeArray;
using SizeType = AQNWBIO::Types::SizeType;

namespace AQNWBIO
{
Expand Down

0 comments on commit f5db6a4

Please sign in to comment.