19 lines
331 B
C++
19 lines
331 B
C++
#ifndef VIEW_REMOVE_H
|
|
#define VIEW_REMOVE_H
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/buttonbox.h>
|
|
#include <gtkmm/box.h>
|
|
#include <gtkmm/entry.h>
|
|
|
|
class view_remove :public Gtk::Box
|
|
{
|
|
public:
|
|
view_remove();
|
|
Gtk::Button m_button;
|
|
Gtk::Box m_VBox;
|
|
Gtk::ButtonBox m_ButtonBox;
|
|
Gtk::Entry entry;
|
|
};
|
|
|
|
#endif // VIEW_REMOVE_H
|