| 286 | void init(int fileTypeArg) { baseFileType = fileTypeArg; } |
| 287 | bool isCStyle() const { return (baseFileType == C_TYPE); } |
| 288 | bool isJavaStyle() const { return (baseFileType == JAVA_TYPE); } |
| 289 | bool isSharpStyle() const { return (baseFileType == SHARP_TYPE); } |
| 290 | |
| 291 | // check if a specific character is a digit |
nothing calls this directly
no outgoing calls
no test coverage detected