mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
18 lines
415 B
C++
18 lines
415 B
C++
#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 expressionForSymbolAbstract(const Poincare::SymbolAbstract & symbol, bool clone) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|