Wt examples  4.11.1
Loading...
Searching...
No Matches
Label.C
Go to the documentation of this file.
1/*
2 * Copyright (C) 2008 Emweb bv, Herent, Belgium.
3 *
4 * See the LICENSE file for terms of use.
5 */
6
7#include <Wt/WContainerWidget.h>
8
9#include "Label.h"
10
11Label::Label(const WString& text, WContainerWidget *parent)
12 : WText(text)
13{
14 setStyleClass(L"label");
15 parent->setContentAlignment(AlignmentFlag::Right);
16}
Label(const WString &text, WContainerWidget *parent)
Definition Label.C:11