12345678910111213141516171819 |
- #ifndef INCLUDED_TIMER_APPLICATION_H
- #define INCLUDED_TIMER_APPLICATION_H
- #include <gtk/gtk.h>
- G_BEGIN_DECLS
- #define TIMER_TYPE_APPLICATION timer_application_get_type()
- G_DECLARE_FINAL_TYPE(TimerApplication, timer_application, TIMER, APPLICATION, GtkApplication);
- TimerApplication *timer_application_new(void);
- const char *timer_application_get_config_file(TimerApplication *self);
- const char *timer_application_get_default_data_file(TimerApplication *self);
- G_END_DECLS
- #endif /* INCLUDED_TIMER_APPLICATION_H */
|