source: issm/trunk-jpl/src/c/objects/ExternalResults/ExternalResult.h@ 12365

Last change on this file since 12365 was 12365, checked in by Mathieu Morlighem, 13 years ago

Do not number folds (folding is automated)

File size: 644 bytes
RevLine 
[4050]1/*!\file: ExternalResult.h
2 * \brief abstract class for ExternalResult object
3 */
4
5
6#ifndef _EXTERNALRESULT_H_
7#define _EXTERNALRESULT_H_
8
9/*Headers:*/
[12365]10/*{{{*/
[4050]11
12#ifdef HAVE_CONFIG_H
[9320]13 #include <config.h>
[4050]14#else
15#error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!"
16#endif
17
18#include "../Object.h"
19#include "../Node.h"
20/*}}}*/
21
22class ExternalResult: public Object{
23
24 public:
25
26 virtual ~ExternalResult(){};
[12365]27 /*Virtual functions:{{{*/
[9883]28 virtual int InstanceEnum()=0;
[6389]29 virtual void WriteData(FILE* fid,bool io_gather)=0;
[11202]30 virtual void GetResultName(char**)=0;
[4182]31 virtual int GetStep(void)=0;
[4050]32 /*}}}*/
33};
34#endif
Note: See TracBrowser for help on using the repository browser.