20 enum Language { L_NA = 0x00,
21 L_F77 = 0x01, L_F90 = 0x02, L_FORTRAN = 0x03,
22 L_C = 0x04, L_CXX = 0x08, L_C_OR_CXX = 0x0C };
24 void process_fortran(istream& is,
const char* infile, ostream& os,
26 void process_c_or_cxx(istream& is,
const char* infile, ostream& os,
28 void process_pragma(
OMPragma* p, ostream& os,
bool* hasEnd=0,
bool* isFor=0);
30 void cleanup_and_exit();
Definition: ompragma.h:19