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

Dependencies:   EthernetNetIf mbed

GoogleChart/GoogleChartLineChart.h

Committer:
shintamainjp
Date:
2010-08-11
Revision:
1:123eff9ba7b2
Parent:
0:77d8b45a8f42

File content as of revision 1:123eff9ba7b2:

/**
 * 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