20 lines
292 B
C++
20 lines
292 B
C++
#ifndef GTKMM_EXAMPLE_HELLOWORLD_H
|
|
#define GTKMM_EXAMPLE_HELLOWORLD_H
|
|
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/window.h>
|
|
|
|
class HelloWorld : public Gtk::Window
|
|
{
|
|
public:
|
|
HelloWorld();
|
|
~HelloWorld() override;
|
|
|
|
protected:
|
|
void on_button_clicked();
|
|
|
|
Gtk::Button m_button;
|
|
};
|
|
|
|
#endif
|