Blame view

build3/poincare/src/layout/floor_layout.h 561 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_FLOOR_LAYOUT_H
  #define POINCARE_FLOOR_LAYOUT_H
  
  #include "bracket_layout.h"
  
  namespace Poincare {
  
  class FloorLayout : public BracketLayout {
  public:
    FloorLayout(ExpressionLayout * operandLayout) : BracketLayout(operandLayout) {}
    ~FloorLayout() {}
    FloorLayout(const FloorLayout& other) = delete;
    FloorLayout(FloorLayout&& other) = delete;
    FloorLayout& operator=(const FloorLayout& other) = delete;
    FloorLayout& operator=(FloorLayout&& other) = delete;
  protected:
    bool renderTopBar() const override { return false; }
  };
  
  }
  
  #endif