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

Last change on this file since 12014 was 12014, checked in by Eric.Larour, 13 years ago

Removing some unused SERIAL code

File size: 646 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:*/
10/*{{{1*/
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(){};
[4248]27 /*Virtual functions:{{{1*/
[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.