Mercurial > hg > Game > Cerium
view TaskManager/kernel/ppe/ExportTaskLog.h @ 2069:26aa08c9a1de draft default tip
cuda example fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sun, 12 Feb 2017 10:04:55 +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