#include <stdio.h>
Go to the source code of this file.
Classes | |
struct | tFileLoggerInitParams |
Enumerations | |
enum | tFileOpenMode { AppendMode = 0x2 } |
enum tFileOpenMode |
File open mode.
Definition at line 30 of file file_logger.h.
00031 { 00032 /** Indicates that the log file should be opened in append mode. */ 00033 AppendMode = 0x2, 00034 #ifdef _ENABLE_LL_ROLLBACK_ 00035 /** Rollback Mode : The log file will be opened in append mode and will 00036 * roll back when the size indicated 00037 * by \ref tFileLoggerInitParams::rollbackSize is reached. 00038 * */ 00039 RollbackMode 00040 #endif // _ENABLE_LL_ROLLBACK_ 00041 } tFileOpenMode;