Blame view

emulateur/epsilon-nofrendo/apps/statistics/statistics_context.h 359 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #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