mirror of https://gitlab.com/cppit/jucipp
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.
19 lines
448 B
19 lines
448 B
#ifndef JUCI_JUCI_H_ |
|
#define JUCI_JUCI_H_ |
|
|
|
#include <gtkmm.h> |
|
#include <boost/filesystem.hpp> |
|
|
|
class Application : public Gtk::Application { |
|
public: |
|
Application(); |
|
int on_command_line(const Glib::RefPtr<Gio::ApplicationCommandLine> &cmd) override; |
|
void on_activate() override; |
|
void on_startup() override; |
|
private: |
|
std::vector<boost::filesystem::path> directories; |
|
std::vector<boost::filesystem::path> files; |
|
}; |
|
|
|
#endif // JUCI_JUCI_H_ |
|
|
|
|