billy-gtk4-interface/hello_world.cpp

7 lines
261 B
C++
Raw Permalink Normal View History

2024-10-24 11:02:04 +02:00
#include "hello_world.hpp"
2024-10-29 18:01:40 +01:00
#include <gtkmm/listbox.h>
2024-10-24 11:02:04 +02:00
namespace learn_gtkmm4 {
2024-10-29 17:44:21 +01:00
HelloWorld::HelloWorld(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &builder) :
2024-10-29 18:01:40 +01:00
Gtk::ApplicationWindow(cobject), m_builder(builder) {}
2024-10-24 11:02:04 +02:00
} // learn_gtkmm4