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.
22 lines
508 B
22 lines
508 B
#ifndef JUCI_SINGLETONS_H_ |
|
#define JUCI_SINGLETONS_H_ |
|
|
|
#include <gtkmm.h> |
|
#include "directories.h" |
|
#include "terminal.h" |
|
#include "menu.h" |
|
#include "config.h" |
|
|
|
class Singleton { |
|
public: |
|
static std::unique_ptr<Config> config; |
|
static std::unique_ptr<Menu> menu; |
|
static std::unique_ptr<Terminal> terminal; |
|
static std::unique_ptr<Directories> directories; |
|
static std::unique_ptr<Gtk::Label> info; |
|
static std::unique_ptr<Gtk::Label> status; |
|
|
|
static void init(); |
|
}; |
|
|
|
#endif // JUCI_SINGLETONS_H_
|
|
|