//
// Return TRUE if TApplication not found
//
char *TestNewAppNeeded(void)
{
    static char line[256+1];
    char fname2[256+1];
    GrepFiles(FALSE,NULL,NULL,"class",
                        "TApplication",
                        "public",
                        "*.c*",fname2,line);
    return line;
}
Beispiel #2
0
 unsigned int GrepFiles(GrepFileCallback cb, const std::string& files, bool recurse = false, unsigned int flags = match_default) { return GrepFiles(cb, files.c_str(), recurse, flags); }