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
Line 
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:*/
10/*{{{*/
11
12#ifdef HAVE_CONFIG_H
13 #include <config.h>
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(){};
27 /*Virtual functions:{{{*/
28 virtual int InstanceEnum()=0;
29 virtual void WriteData(FILE* fid,bool io_gather)=0;
30 virtual void GetResultName(char**)=0;
31 virtual int GetStep(void)=0;
32 /*}}}*/
33};
34#endif
Note: See TracBrowser for help on using the repository browser.