22 lines
377 B
C++
22 lines
377 B
C++
//
|
|
// Created by selim on 13.11.22.
|
|
//
|
|
|
|
#include "VehiclesListFactory.h"
|
|
#include "../gtkpp/Label.h"
|
|
|
|
#include <iostream>
|
|
|
|
VehiclesListFactory::VehiclesListFactory() {
|
|
}
|
|
|
|
GtkWidget* VehiclesListFactory::setup() {
|
|
gtkpp::Label label;
|
|
return label.gobj();
|
|
}
|
|
|
|
void VehiclesListFactory::bind(GtkWidget *widget) {
|
|
gtkpp::Label label(widget);
|
|
label.setText("qwe");
|
|
}
|