GUIFramework 1.1.0
Framework for desktop GUI applications in C++.
Loading...
Searching...
No Matches
ComponentSettings.cpp
Go to the documentation of this file.
1#include "ComponentSettings.h"
2
3using namespace std;
4
5namespace gui_framework
6{
7 namespace utility
8 {
9 ComponentSettings::ComponentSettings(int x, int y, uint16_t width, uint16_t height, const vector<string>& localizationKeys) :
10 x(x),
11 y(y),
12 width(width),
13 height(height),
14 localizationKeys(localizationKeys)
15 {
16
17 }
18 }
19}