00001 #ifndef __POLYNOMIAL_H__ 00002 #define __POLYNOMIAL_H__ 00003 00004 namespace math 00005 { 00006 class polynomial 00007 { 00008 public: 00009 // coefficients 00010 float* a; 00011 // number of coefficients 00012 int n; 00013 }; 00014 } 00015 00016 #endif