00001 #ifndef GENSQP_DATAPOOL_H 00002 #define GENSQP_DATAPOOL_H 00003 00004 #include "GenSQP_Vector.hpp" 00005 00014 namespace GenSQP { 00015 00016 class DataPool { 00017 public: 00018 00019 virtual ~DataPool() {} 00020 00038 virtual void computeAll( const Vector &x ) = 0; 00039 00040 }; // class DataPool 00041 00042 } // namespace GenSQP 00043 00044 #endif
1.3.9.1