Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members Related Pages Search
maximumfunction.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef MAXIMUMFUNCTION_H
00019 #define MAXIMUMFUNCTION_H
00020
00021 #include "mathfunction.h"
00022
00028 class MaximumFunction : public MathFunction
00029 {
00030 public:
00031 MaximumFunction(BasicGraph *,int);
00032 ~MaximumFunction();
00033
00034 protected:
00035 void calculate_and_draw(QPainter *);
00036 void draw_stored(QPainter *);
00037
00038 private:
00039 double max_x_point, max_y_point;
00040 };
00041
00042 #endif
|