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