-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.cpp
45 lines (31 loc) · 1.39 KB
/
layout.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// Created by piotr on 06.02.25.
//
/*------- include files:
-------------------------------------------------------------------*/
#include "layout.h"
namespace Witcher {
/****************************************************************
* *
* H O R I Z O N T A L B O X L A Y O U T *
* *
****************************************************************/
void HBoxLayout::prepare() noexcept {
}
void HBoxLayout::update() noexcept {
}
/****************************************************************
* *
* V E R T I C A L B O X L A Y O U T *
* *
****************************************************************/
void VBoxLayout::update() noexcept {
}
/****************************************************************
* *
* G R I D L A Y O U T *
* *
****************************************************************/
void GridLayout::update() noexcept {
}
}