mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-29 20:44:25 +00:00
36 lines
610 B
C++
36 lines
610 B
C++
#ifndef APP_BROWSER_HPP
|
|
#define APP_BROWSER_HPP
|
|
|
|
#include <glibmm/i18n.h>
|
|
#include <gtkmm/applicationwindow.h>
|
|
|
|
namespace lib
|
|
{
|
|
class Database;
|
|
}
|
|
|
|
namespace app
|
|
{
|
|
namespace browser
|
|
{
|
|
class Header;
|
|
class Main;
|
|
}
|
|
|
|
class Browser : public Gtk::ApplicationWindow
|
|
{
|
|
app::browser::Header * header;
|
|
app::browser::Main * main;
|
|
|
|
public:
|
|
|
|
Browser(
|
|
//const Glib::RefPtr<Gtk::Application> & app,
|
|
//const std::shared_ptr<lib::Database> & db
|
|
);
|
|
|
|
~Browser();
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_HPP
|