00001 #ifndef __VECINT_HPP__ 00002 #define __VECINT_HPP__ 00003 00004 /**********************************************************/ 00005 00006 #include "tdef.h" 00007 00008 /**********************************************************/ 00009 00010 class VecInt { 00011 public: 00012 VecInt( INT len, BOOL linint=FALSE, DOUBLE tend=1. ); 00013 ~VecInt(); 00014 00015 VOID set( DOUBLE *v, DOUBLE tend=-1 ); 00016 DOUBLE *get( DOUBLE pos ); 00017 00018 protected: 00019 INT len; 00020 BOOL lin; 00021 DOUBLE tend; 00022 00023 DOUBLE *v1, *v2; 00024 DOUBLE *vwrk; 00025 }; 00026 00027 /**********************************************************/ 00028 00029 #endif