37 lines
324 B
C++
37 lines
324 B
C++
//
|
|
// gui->cpp
|
|
// emptyExample
|
|
//
|
|
// Created by James Alliban on 25/06/2013.
|
|
//
|
|
//
|
|
|
|
#include "AbstractGraph.h"
|
|
|
|
|
|
|
|
void AbstractGraph::setup()
|
|
{
|
|
printf("AbstractGraph::setup()\n");
|
|
}
|
|
|
|
|
|
void AbstractGraph::update()
|
|
{
|
|
}
|
|
|
|
|
|
void AbstractGraph::draw()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void AbstractGraph::addNewData(vector<DataObject> newData)
|
|
{
|
|
|
|
}
|
|
|
|
|