Added support for .hh and .hpp libraries

This commit is contained in:
Chris--A 2015-05-20 01:36:11 +10:00
parent 11476df7f7
commit af812a551b
1 changed files with 1 additions and 1 deletions

View File

@ -417,7 +417,7 @@ public class BaseNoGui {
* within the header files at the top-level).
*/
static public String[] headerListFromIncludePath(File path) throws IOException {
String[] list = path.list(new OnlyFilesWithExtension(".h"));
String[] list = path.list(new OnlyFilesWithExtension(".h", ".hh", ".hpp"));
if (list == null) {
throw new IOException();
}