(self, source_dir)
| 345 | return location.get_file() |
| 346 | |
| 347 | def getCompoundFileLocation(self, source_dir): |
| 348 | location = self.parsed_file.get_compounddef().get_location() |
| 349 | if location is None: |
| 350 | return None |
| 351 | return os.path.realpath( os.path.join(source_dir, "src", "openms", "include", location.get_file()) ) |
| 352 | |
| 353 | def isEmpty(self, discard_defines=False): |
| 354 | compound = self.compound |
no outgoing calls
no test coverage detected