| 123456789101112131415161718192021222324 |
- #ifndef _CPlaque_Result_h_
- #define _CPlaque_Result_h_
- #include "PlaqueResult.h"
- class CPlaqueResult
- {
- public:
- CPlaqueResult();
- virtual ~CPlaqueResult();
-
- bool allocate_vectors( long n_points );
- int fill( plaque::PlaqueResult* res );
- int fill2( plaque::PlaqueResult* res );
- plaque::PlaqueResult* result;
- private:
-
- void Initialize();
- };
- #endif
|