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