| 1234567891011121314151617181920212223242526 |
- #ifndef _CEIM_Result_h_
- #define _CEIM_Result_h_
- #include "EIMResult.h"
- class CEIMResult
- {
- public:
- CEIMResult();
- virtual ~CEIMResult();
-
- bool allocate_vectors( long n_points );
- bool fill( imt::IMTResult* res );
- imt::IMTResult* result;
- private:
-
- void Initialize();
- };
- #endif
|