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
|
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;
|
---|
[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*/
|
---|
| 23 | int AddResult(ElementResult* result);
|
---|
[15737] | 24 | void Write(Parameters* parameters);
|
---|
[14996] | 25 | };
|
---|
| 26 | #endif //ifndef _RESULTS_H_
|
---|
Note:
See
TracBrowser
for help on using the repository browser.