diff options
Diffstat (limited to 'grapher/GraphData.hxx')
-rw-r--r-- | grapher/GraphData.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grapher/GraphData.hxx b/grapher/GraphData.hxx index 9bf3b624..e4c08cfd 100644 --- a/grapher/GraphData.hxx +++ b/grapher/GraphData.hxx @@ -1,6 +1,7 @@ #ifndef SYSTEMTAP_GRAPHDATA_HXX #define SYSTEMTAP_GRAPHDATA_HXX 1 +#include <string> #include <utility> #include <vector> #include <tr1/memory> @@ -24,6 +25,9 @@ namespace systemtap double scale; double color[3]; Style style; + std::string title; + std::string xAxisText; + std::string yAxisText; TimeList times; }; |