Page MenuHomec4science

reader_restart.hh
No OneTemporary

File Metadata

Created
Sun, Sep 15, 07:25

reader_restart.hh

/*
Copyright 2008 Guillaume ANCIAUX (guillaume.anciaux@epfl.ch)
This file is part of ParaViewHelper.
ParaViewHelper is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
ParaViewHelper is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with ParaViewHelper. If not, see <http://www.gnu.org/licenses/>.
*/
/* -------------------------------------------------------------------------- */
#ifndef __IOHLPER_READER_RESTART_H__
#define __IOHLPER_READER_RESTART_H__
/* -------------------------------------------------------------------------- */
#include <map>
#include <string>
#include "reader.h"
#include "field.h"
/* -------------------------------------------------------------------------- */
__BEGIN_IOHELPER__
/** Class ReadRestart
* Implementation of a read to restart
*/
class ReaderRestart : public Reader {
/* ------------------------------------------------------------------------ */
/* Constructors/Destructors */
/* ------------------------------------------------------------------------ */
public:
ReaderRestart():Reader(){};
~ReaderRestart(){
};
/* ------------------------------------------------------------------------ */
/* Methods */
/* ------------------------------------------------------------------------ */
//! dump to file
void Read();
/* ------------------------------------------------------------------------ */
/* Class Members */
/* ------------------------------------------------------------------------ */
private:
};
__END_IOHELPER__
#endif /* __IOHLPER_READER_RESTART_H__ */

Event Timeline