mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 16:57:31 +01:00
17 lines
377 B
C++
17 lines
377 B
C++
#ifndef STATISTICS_STATISTICS_CONTEXT_H
|
|
#define STATISTICS_STATISTICS_CONTEXT_H
|
|
|
|
#include "../shared/store_context.h"
|
|
|
|
namespace Statistics {
|
|
|
|
class StatisticsContext : public Shared::StoreContext {
|
|
public:
|
|
using Shared::StoreContext::StoreContext;
|
|
const Poincare::Expression expressionForSymbol(const Poincare::SymbolAbstract & symbol, bool clone) override;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|