source: issm/trunk-jpl/src/c/classes/ExternalResults/Results.h@ 18886

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

CHG: allow chasing through a dataset of external results according now to their enum but to their corresponding
name.

File size: 643 bytes
Line 
1#ifndef _CONTAINER_RESULTS_H_
2#define _CONTAINER_RESULTS_H_
3
4#include "../../datastructures/datastructures.h"
5
6/*forward declarations */
7class Parameters;
8class ExternalResult;
9
10/*!\brief Declaration of Results class.
11 *
12 * Declaration of Results class. Results are vector lists (Containers) of Result objects.
13 */
14class Results: public DataSet{
15
16 public:
17
18 /*constructors, destructors*/
19 Results();
20 ~Results();
21
22 /*Mehthos*/
23 int AddResult(ExternalResult* result);
24 ExternalResult* FindResult(int result_enum);
25 int DeleteResult(int result_enum,int result_step);
26 void Write(Parameters* parameters);
27};
28#endif //ifndef _RESULTS_H_
Note: See TracBrowser for help on using the repository browser.