testing-repository/Gtkmm3/gtk141_minesweeper2/src/InputBox.hh

12 lines
274 B
C++
Raw Normal View History

2022-10-17 22:21:25 +08:00
#pragma once
#include <gtkmm.h>
class InputBox : public Gtk::Dialog{
public:
static InputBox *create();
InputBox(BaseObjectType *cobject, const Glib::RefPtr<Gtk::Builder> &ref_Glade);
private:
Glib::RefPtr<Gtk::Builder> ref_builder;
};