|
Last change
on this file since 18886 was 18886, checked in by Eric.Larour, 11 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
|
| Rev | Line | |
|---|
| [14996] | 1 | #ifndef _CONTAINER_RESULTS_H_
|
|---|
| [15737] | 2 | #define _CONTAINER_RESULTS_H_
|
|---|
| [14996] | 3 |
|
|---|
| [15067] | 4 | #include "../../datastructures/datastructures.h"
|
|---|
| [14996] | 5 |
|
|---|
| 6 | /*forward declarations */
|
|---|
| 7 | class Parameters;
|
|---|
| [16469] | 8 | class ExternalResult;
|
|---|
| [14996] | 9 |
|
|---|
| 10 | /*!\brief Declaration of Results class.
|
|---|
| 11 | *
|
|---|
| 12 | * Declaration of Results class. Results are vector lists (Containers) of Result objects.
|
|---|
| 13 | */
|
|---|
| 14 | class Results: public DataSet{
|
|---|
| 15 |
|
|---|
| 16 | public:
|
|---|
| 17 |
|
|---|
| 18 | /*constructors, destructors*/
|
|---|
| 19 | Results();
|
|---|
| 20 | ~Results();
|
|---|
| 21 |
|
|---|
| [15898] | 22 | /*Mehthos*/
|
|---|
| [16469] | 23 | int AddResult(ExternalResult* result);
|
|---|
| [18886] | 24 | ExternalResult* FindResult(int result_enum);
|
|---|
| [16469] | 25 | int DeleteResult(int result_enum,int result_step);
|
|---|
| [15737] | 26 | void Write(Parameters* parameters);
|
|---|
| [14996] | 27 | };
|
|---|
| 28 | #endif //ifndef _RESULTS_H_
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.