Numworks Epsilon  1.4.1
Graphing Calculator Operating System
ceiling_layout.h
Go to the documentation of this file.
1 #ifndef POINCARE_CEILING_LAYOUT_H
2 #define POINCARE_CEILING_LAYOUT_H
3 
4 #include "bracket_layout.h"
5 
6 namespace Poincare {
7 
8 class CeilingLayout : public BracketLayout {
9 public:
10  CeilingLayout(ExpressionLayout * operandLayout) : BracketLayout(operandLayout) {}
12  CeilingLayout(const CeilingLayout& other) = delete;
13  CeilingLayout(CeilingLayout&& other) = delete;
14  CeilingLayout& operator=(const CeilingLayout& other) = delete;
15  CeilingLayout& operator=(CeilingLayout&& other) = delete;
16 protected:
17  bool renderBottomBar() const override { return false; }
18 };
19 
20 }
21 
22 #endif
CeilingLayout & operator=(const CeilingLayout &other)=delete
bool renderBottomBar() const override
CeilingLayout(ExpressionLayout *operandLayout)