Go to the source code of this file.
◆ EChannelType
Enum for describing the center, edge and corner subchannels or gap types.
| Enumerator |
|---|
| CENTER | |
| EDGE | |
| CORNER | |
Definition at line 13 of file SubChannelEnums.h.
◆ operator<<()
| std::ostringstream & operator<< |
( |
std::ostringstream & |
oss, |
|
|
const EChannelType & |
channelType |
|
) |
| |
|
inline |
Definition at line 21 of file SubChannelEnums.h.
23{
24
25 switch (channelType)
26 {
28 oss << "CENTER";
29 break;
31 oss << "EDGE";
32 break;
34 oss << "CORNER";
35 break;
36 }
37 return oss;
38}