Public Member Functions | Private Attributes | List of all members
spdlog::details::bytes_range< It > Class Template Reference

#include <bin_to_hex.h>

Public Member Functions

 bytes_range (It range_begin, It range_end)
 
It begin () const
 
It end () const
 

Private Attributes

It begin_
 
It end_
 

Detailed Description

template<typename It>
class spdlog::details::bytes_range< It >

Definition at line 28 of file bin_to_hex.h.

Constructor & Destructor Documentation

template<typename It>
spdlog::details::bytes_range< It >::bytes_range ( It  range_begin,
It  range_end 
)
inline

Definition at line 31 of file bin_to_hex.h.

32  : begin_(range_begin)
33  , end_(range_end)
34  {
35  }

Member Function Documentation

template<typename It>
It spdlog::details::bytes_range< It >::begin ( ) const
inline

Definition at line 37 of file bin_to_hex.h.

38  {
39  return begin_;
40  }
template<typename It>
It spdlog::details::bytes_range< It >::end ( void  ) const
inline

Definition at line 41 of file bin_to_hex.h.

42  {
43  return end_;
44  }

Member Data Documentation

template<typename It>
It spdlog::details::bytes_range< It >::begin_
private

Definition at line 47 of file bin_to_hex.h.

template<typename It>
It spdlog::details::bytes_range< It >::end_
private

Definition at line 47 of file bin_to_hex.h.


The documentation for this class was generated from the following file: