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