Files
Upsilon/apps/statistics/statistics_context.h
2018-06-11 13:58:26 +02:00

17 lines
359 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::Symbol * symbol) override;
};
}
#endif