.inl files
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Wt are .inl files in vc++? Any kind of info is most welcome
-
Wt are .inl files in vc++? Any kind of info is most welcome
-
Wt are .inl files in vc++? Any kind of info is most welcome
Some answers from google: *.inl files contain the definitions of inline member functions. inlsplit turns a .inl file into the corresponding .cc and .h files, placing an include guard (#ifndef _HEADER_H...#endif) around the .h file. It can also optionally generate preprocessor directives in the output files to tell the C++ compiler what line it is on in the .inl file (for error messages). Hope it answers your question?!
Regards Programm3r