- #ifndef DEBUG_FILE_H
- #define DEBUG_FILE_H
- #include <stdio.h>
- #include <stdlib.h>
- class DebugFile {
- private:
- FILE *debugFile;
- public:
- DebugFile(char *filename);
- ~DebugFile();
- void DebugInt(char *text, int d);
- void DebugFloat(char *text, float d);
- };
- #endif