#ifndef __STDINC_H__ #define __STDINC_H__ // This is what I hope will become the standard set of headers // which will be necessary in most files of a project. // This is a sample and it should be copied and modified for // each project. // These are standard headers #include #include #include #include // These are my standard headers and should be fairly stable // as the entire project will have dependencies on them. #include "types.h" #include "debug.h" #include "timer.h" //#include "mathlib.h" //#include "datalib.h" // These are the GL headers //#include "glsi.h" #endif // __STDINC_H__