Yoda/src/app/browser/main.hpp

31 lines
416 B
C++
Raw Normal View History

2024-08-11 22:04:34 +03:00
#ifndef APP_BROWSER_MAIN_H
#define APP_BROWSER_MAIN_H
#include <gtkmm/box.h>
namespace app::browser
{
namespace main
{
class Tab;
}
class Main : public Gtk::Box
{
private:
app::browser::main::Tab * tab;
public:
Main();
2024-08-12 09:45:22 +03:00
~Main();
2024-08-12 18:16:27 +03:00
void tab_append();
2024-08-12 19:11:00 +03:00
void tab_close();
2024-08-11 22:04:34 +03:00
};
}
#endif // APP_BROWSER_MAIN_H