view TaskManager/kernel/ppe/ExportTaskLog.h @ 1531:4443d59a8210 draft

SDL.h in main.cc
author yuhi@cr.ie.u-ryukyu.ac.jp
date Fri, 07 Dec 2012 15:46:27 +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