Retrieves the variable name of the type as a c-style string. Meant to be a convenience member. @returns Pointer to constant c-style string containing the name.
| 108 | /// |
| 109 | /// @returns Pointer to constant c-style string containing the name. |
| 110 | inline const char *c_str() const |
| 111 | { |
| 112 | return this->getName().c_str(); |
| 113 | }; |
| 114 | |
| 115 | /// <summary>Output stream operator overload.</summary> Allows printing of the type without |
| 116 | /// calling Type::getName. |