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

Last change on this file since 15012 was 14996, checked in by Eric.Larour, 12 years ago

CHG: integrated Container/ directory into src/c/classes/objects directory. No reason to have the containers
and the objects that they contain defined in different places.

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