Files
Upsilon/apps/graph/test/helper.h
2020-12-07 15:58:56 +01:00

21 lines
626 B
C++

#ifndef APPS_GRAPH_TEST_HELPER_H
#define APPS_GRAPH_TEST_HELPER_H
#include "../app.h"
#include "../../poincare/test/helper.h"
using namespace Poincare;
using namespace Shared;
namespace Graph {
constexpr ContinuousFunction::PlotType Cartesian = ContinuousFunction::PlotType::Cartesian;
constexpr ContinuousFunction::PlotType Polar = ContinuousFunction::PlotType::Polar;
constexpr ContinuousFunction::PlotType Parametric = ContinuousFunction::PlotType::Parametric;
ContinuousFunction * addFunction(const char * definition, ContinuousFunction::PlotType type, ContinuousFunctionStore * store, Context * context);
}
#endif