| 83 | } |
| 84 | |
| 85 | inline std::string GetArgumentType() const |
| 86 | { |
| 87 | std::string realType = GetRealType(); |
| 88 | |
| 89 | if (realType == "bool" || realType == "double" || realType == "int") |
| 90 | return realType; |
| 91 | else |
| 92 | return "const " + realType + "&"; |
| 93 | } |
| 94 | }; |
| 95 | |
| 96 | struct Field |
no outgoing calls
no test coverage detected