elf: supporting R_386_PC32 relocation type
[quarnos.git] / hydra / label.cpp
blob817f63db727132c9706e0005e161991b43473972
1 #include "uapi.h"
3 #include "ui.h"
4 #include "console.h"
5 #include "label.h"
7 using namespace hydra;
9 label::label(form *frm, string text, string name) : ui_element(name), caption(text) {
10 frm->add(this);
13 void label::render(ui::ui_type) {
14 uapi::output->write(caption);