mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 01:29:57 +00:00
29 lines
384 B
C++
29 lines
384 B
C++
#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();
|
|
|
|
~Main();
|
|
|
|
void tabAppend();
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_H
|