diff options
Diffstat (limited to 'src/qalculateplotdialog.h')
-rw-r--r-- | src/qalculateplotdialog.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/qalculateplotdialog.h b/src/qalculateplotdialog.h index 4d8e9b8..c35ac53 100644 --- a/src/qalculateplotdialog.h +++ b/src/qalculateplotdialog.h @@ -20,6 +20,8 @@ #ifndef QALCULATEPLOTDIALOG_H #define QALCULATEPLOTDIALOG_H +#include <vector> +#include <string> #include <kdialogbase.h> #include <tqmap.h> #include <tqstring.h> @@ -63,8 +65,8 @@ public: TQTabWidget *tabs; TDEListView *seriesView; - bool generatePlot(PlotParameters &pp, vector<MathStructure> &y_vectors, vector<MathStructure> &x_vectors, vector<PlotDataParameters*> &pdps); - void generatePlotSeries(MathStructure **x_vector, MathStructure **y_vector, int type, string str, string str_x); + bool generatePlot(PlotParameters &pp, std::vector<MathStructure> &y_vectors, std::vector<MathStructure> &x_vectors, std::vector<PlotDataParameters*> &pdps); + void generatePlotSeries(MathStructure **x_vector, MathStructure **y_vector, int type, std::string str, std::string str_x); TQMap<TQListViewItem*, int> itemStyle; TQMap<TQListViewItem*, int> itemSmoothing; |