GoogleChart.

Dependents:   GoogleChart_TestProgram

Revision:
0:ded8a44ff71f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GoogleChartLineChart.h	Tue Aug 17 09:21:55 2010 +0000
@@ -0,0 +1,24 @@
+/**
+ * GoogleChart API interface driver. (Version 0.0.1)
+ *
+ * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
+ * http://shinta.main.jp/
+ */
+
+#ifndef _GOOGLE_CHART_LINE_CHART_H_
+#define _GOOGLE_CHART_LINE_CHART_H_
+
+#include <stdio.h>
+#include <string.h>
+
+#include "GoogleChart.h"
+
+class GoogleChartLineChart : public GoogleChart {
+public:
+    GoogleChartLineChart();
+    virtual ~GoogleChartLineChart();
+
+    virtual std::string toString();
+};
+
+#endif