You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
487 B

#ifndef JUCI_JUCI_H_
#define JUCI_JUCI_H_
#include <gtkmm.h>
#include "logging.h"
#include "window.h"
class Application : public Gtk::Application {
public:
Application();
10 years ago
int on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine> &cmd);
void on_activate();
void on_startup();
std::unique_ptr<Window> window;
private:
std::vector<boost::filesystem::path> directories;
std::vector<boost::filesystem::path> files;
void init_logging();
10 years ago
};
10 years ago
#endif // JUCI_JUCI_H_
10 years ago