|
Last change
on this file since 16469 was 16469, checked in by Mathieu Morlighem, 12 years ago |
|
BUG: make sure identical results are deleted before being added
|
|
File size:
657 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;
|
|---|
| [15898] | 8 | class ElementResult;
|
|---|
| [16469] | 9 | class ExternalResult;
|
|---|
| [14996] | 10 |
|
|---|
| 11 | /*!\brief Declaration of Results class.
|
|---|
| 12 | *
|
|---|
| 13 | * Declaration of Results class. Results are vector lists (Containers) of Result objects.
|
|---|
| 14 | */
|
|---|
| 15 | class Results: public DataSet{
|
|---|
| 16 |
|
|---|
| 17 | public:
|
|---|
| 18 |
|
|---|
| 19 | /*constructors, destructors*/
|
|---|
| 20 | Results();
|
|---|
| 21 | ~Results();
|
|---|
| 22 |
|
|---|
| [15898] | 23 | /*Mehthos*/
|
|---|
| 24 | int AddResult(ElementResult* result);
|
|---|
| [16469] | 25 | int AddResult(ExternalResult* result);
|
|---|
| 26 | int DeleteResult(int result_enum,int result_step);
|
|---|
| [15737] | 27 | void Write(Parameters* parameters);
|
|---|
| [14996] | 28 | };
|
|---|
| 29 | #endif //ifndef _RESULTS_H_
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.