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

Last change on this file since 15898 was 15898, checked in by Mathieu Morlighem, 12 years ago

NEW: when a new result is added, we first check wether it already exists in the results dataset, if yes, it is deleted first

File size: 541 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 ElementResult;
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(ElementResult* result);
24 void Write(Parameters* parameters);
25};
26#endif //ifndef _RESULTS_H_
Note: See TracBrowser for help on using the repository browser.