William A. Kennington III | b25086a | 2023-01-09 18:53:29 -0800 | [diff] [blame] | 1 | #include <stdplus/net/addr/ether.hpp> |
William A. Kennington III | 84c7aa2 | 2023-06-14 13:26:47 -0700 | [diff] [blame] | 2 | |
| 3 | namespace stdplus |
| 4 | { |
William A. Kennington III | 8955b5e | 2023-06-14 16:30:51 -0700 | [diff] [blame^] | 5 | template char* ToStr<EtherAddr>::operator()(char*, EtherAddr) const noexcept; |
William A. Kennington III | 84c7aa2 | 2023-06-14 13:26:47 -0700 | [diff] [blame] | 6 | template EtherAddr FromStr<EtherAddr>::operator()(std::string_view) const; |
William A. Kennington III | 8955b5e | 2023-06-14 16:30:51 -0700 | [diff] [blame^] | 7 | } // namespace stdplus |