mirror of
https://github.com/aantron/better-enums.git
synced 2025-12-06 16:56:42 +08:00
8 lines
153 B
C++
8 lines
153 B
C++
#include <iostream>
|
|
#include "shared.h"
|
|
|
|
void print(Channel channel)
|
|
{
|
|
std::cout << Channel::_name() << "::" << channel._to_string() << std::endl;
|
|
}
|