Mercurial > hg > Game > Cerium
view TaskManager/kernel/ppe/ExportTaskLog.h @ 1602:e33e106ca3e0 draft
change default make parallel from fifo
author | Shohei KOKUBO <e105744@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 06 Apr 2013 17:27:30 +0900 |
parents | f578c190a661 |
children |
line wrap: on
line source
#ifndef included_exporttasklog #define included_exporttasklog #include <stdio.h> #include "TaskLog.h" #include "QueueInfo.h" class ExportTaskLog { public: ExportTaskLog(QueueInfo<TaskLog> *_tasklog); virtual ~ExportTaskLog(); public: void open(); void printOut(); void close(); private: QueueInfo<TaskLog> *tasklog; FILE *fp; static const char* const FILENAME; }; #endif