7 lines
261 B
C++
7 lines
261 B
C++
#include "hello_world.hpp"
|
|
#include <gtkmm/listbox.h>
|
|
|
|
namespace learn_gtkmm4 {
|
|
HelloWorld::HelloWorld(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &builder) :
|
|
Gtk::ApplicationWindow(cobject), m_builder(builder) {}
|
|
} // learn_gtkmm4
|