regression_context.h
389 Bytes
#ifndef REGRESSION_REGRESSION_CONTEXT_H
#define REGRESSION_REGRESSION_CONTEXT_H
#include <poincare/context.h>
#include "../shared/store_context.h"
namespace Regression {
class RegressionContext : public Shared::StoreContext {
public:
using Shared::StoreContext::StoreContext;
const Poincare::Expression * expressionForSymbol(const Poincare::Symbol * symbol) override;
};
}
#endif