mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
25 lines
358 B
C++
25 lines
358 B
C++
|
#ifndef APP_BROWSER_HEADER_MAIN_HPP
|
||
|
#define APP_BROWSER_HEADER_MAIN_HPP
|
||
|
|
||
|
#include <gtkmm/box.h>
|
||
|
|
||
|
namespace app::browser::header
|
||
|
{
|
||
|
namespace main
|
||
|
{
|
||
|
class Title;
|
||
|
}
|
||
|
|
||
|
class Main : public Gtk::Box
|
||
|
{
|
||
|
main::Title * title;
|
||
|
|
||
|
public:
|
||
|
|
||
|
Main();
|
||
|
|
||
|
~Main();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // APP_BROWSER_HEADER_MAIN_HPP
|