CEIMResult.h 340 B

1234567891011121314151617181920212223242526
  1. #ifndef _CEIM_Result_h_
  2. #define _CEIM_Result_h_
  3. #include "EIMResult.h"
  4. class CEIMResult
  5. {
  6. public:
  7. CEIMResult();
  8. virtual ~CEIMResult();
  9. bool allocate_vectors( long n_points );
  10. bool fill( imt::IMTResult* res );
  11. imt::IMTResult* result;
  12. private:
  13. void Initialize();
  14. };
  15. #endif