| 870 | } |
| 871 | |
| 872 | string FileAccess::getIncludeFileName ( const string & fileName, const string & incFileName ) const { |
| 873 | auto np = fileName.find_last_of("\\/"); |
| 874 | if ( np != string::npos ) { |
| 875 | return fileName.substr(0,np+1) + incFileName; |
| 876 | } else { |
| 877 | return incFileName; |
| 878 | } |
| 879 | } |
| 880 | |
| 881 | |
| 882 | static string getModuleName ( const string & nameWithDots ) { |
no outgoing calls
no test coverage detected