Last change
on this file since 15067 was 15067, checked in by Eric.Larour, 12 years ago |
CHG: moved DataSet.h and Object.h into a directory called datastructures/
This should be our first building block which along shared/ will be used by every
other library we build. Not sure whether to make it into a library for now.
|
File size:
529 bytes
|
Rev | Line | |
---|
[14996] | 1 | #ifndef _CONTAINER_RESULTS_H_
|
---|
| 2 | #define _CONTAINER_RESULTS_H_
|
---|
| 3 |
|
---|
[15067] | 4 | #include "../../datastructures/datastructures.h"
|
---|
[14996] | 5 |
|
---|
| 6 | /*forward declarations */
|
---|
| 7 | class Parameters;
|
---|
| 8 |
|
---|
| 9 | /*!\brief Declaration of Results class.
|
---|
| 10 | *
|
---|
| 11 | * Declaration of Results class. Results are vector lists (Containers) of Result objects.
|
---|
| 12 | */
|
---|
| 13 | class 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.