mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
18 lines
317 B
C++
18 lines
317 B
C++
![]() |
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HPP
|
||
|
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HPP
|
||
|
|
||
|
#include <gtkmm/box.h>
|
||
|
|
||
|
namespace app::browser::main::tab::data
|
||
|
{
|
||
|
class Navbar : public Gtk::Box
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
Navbar();
|
||
|
|
||
|
~Navbar();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HPP
|