Skip to content

Commit

Permalink
Merge pull request #28 from njoy/feature/StringRange
Browse files Browse the repository at this point in the history
Adding StringRange
  • Loading branch information
whaeck authored May 16, 2024
2 parents fce8ba2 + c8f3641 commit 5a2c0e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/tools/views/views-python.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#define NJOY_TOOLS_PYTHON_VIEWS

// system includes
#include <string>
#include <complex>

// other includes
Expand Down Expand Up @@ -53,6 +54,7 @@ using UnsignedIntRange = BasicRandomAccessAnyView< unsigned int >;
using DoubleRange2D = BasicRandomAccessAnyView< DoubleRange >;
using DoubleRange3D = BasicRandomAccessAnyView< DoubleRange2D >;
using ComplexRange = BasicRandomAccessAnyView< std::complex< double > >;
using StringRange = BasicRandomAccessAnyView< std::string >;

/**
* @brief Wrap a BasicBidirectionalAnyView templated on the Element type
Expand Down

0 comments on commit 5a2c0e0

Please sign in to comment.