view TaskManager/kernel/ppe/ExportTaskLog.h @ 2054:2e7a6f40672f draft

add param(4) in FileMapReduce.cc
author masa
date Fri, 29 Jan 2016 15:56:28 +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