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.

20 lines
386 B

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