Blame view

Giac_maj/epsilon-giac/poincare/src/layout/ceiling_layout.h 590 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  #ifndef POINCARE_CEILING_LAYOUT_H
  #define POINCARE_CEILING_LAYOUT_H
  
  #include "bracket_layout.h"
  
  namespace Poincare {
  
  class CeilingLayout : public BracketLayout {
  public:
    CeilingLayout(ExpressionLayout * operandLayout) : BracketLayout(operandLayout) {}
    ~CeilingLayout() {}
    CeilingLayout(const CeilingLayout& other) = delete;
    CeilingLayout(CeilingLayout&& other) = delete;
    CeilingLayout& operator=(const CeilingLayout& other) = delete;
    CeilingLayout& operator=(CeilingLayout&& other) = delete;
  protected:
    bool renderBottomBar() const override { return false; }
  };
  
  }
  
  #endif