billy-gtk4-interface/hello_world.cpp

8 lines
262 B
C++
Raw Normal View History

2024-10-24 11:02:04 +02:00
#include "hello_world.hpp"
2024-10-29 17:44:21 +01:00
#include <gtkmm/box.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) :
Gtk::ApplicationWindow(cobject), m_builder(builder) {
2024-10-24 11:02:04 +02:00
}
} // learn_gtkmm4