GoogleChart.

Dependents:   GoogleChart_TestProgram

GoogleChartLineChart.h

Committer:
shintamainjp
Date:
2010-08-17
Revision:
0:ded8a44ff71f

File content as of revision 0:ded8a44ff71f:

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