StarBoard Orange - Example application No.1 GoogleChartLogger with StarBoard Orange

Dependencies:   EthernetNetIf mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers GoogleChartLineChart.h Source File

GoogleChartLineChart.h

00001 /**
00002  * GoogleChart API interface driver. (Version 0.0.1)
00003  *
00004  * Copyright (C) 2010 Shinichiro Nakamura (CuBeatSystems)
00005  * http://shinta.main.jp/
00006  */
00007 
00008 #ifndef _GOOGLE_CHART_LINE_CHART_H_
00009 #define _GOOGLE_CHART_LINE_CHART_H_
00010 
00011 #include <stdio.h>
00012 #include <string.h>
00013 
00014 #include "GoogleChart.h"
00015 
00016 class GoogleChartLineChart : public GoogleChart {
00017 public:
00018     GoogleChartLineChart();
00019     virtual ~GoogleChartLineChart();
00020 
00021     virtual std::string toString();
00022 };
00023 
00024 #endif